2022-02-22 11:45:31 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": [
|
2022-04-04 11:44:15 +03:00
|
|
|
"es2020"
|
2022-02-22 11:45:31 +03:00
|
|
|
],
|
2022-03-14 12:41:45 +03:00
|
|
|
"target": "es2017",
|
2022-02-22 11:45:31 +03:00
|
|
|
"module": "CommonJS",
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"outDir": "./lib",
|
2022-03-14 11:01:12 +03:00
|
|
|
"rootDir": "./src",
|
2022-02-22 11:45:31 +03:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"sourceMap": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-03-14 12:41:45 +03:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-02-22 11:45:31 +03:00
|
|
|
"declaration": true
|
|
|
|
},
|
|
|
|
"include": [
|
2022-03-14 12:41:45 +03:00
|
|
|
"src"
|
2022-02-22 11:45:31 +03:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"types",
|
|
|
|
"**/*.spec.ts"
|
|
|
|
]
|
|
|
|
}
|