2022-02-22 11:45:31 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": [
|
|
|
|
"es2019"
|
|
|
|
],
|
2022-03-14 11:34:59 +03:00
|
|
|
"target": "es6",
|
2022-02-22 11:45:31 +03:00
|
|
|
"module": "CommonJS",
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"outDir": "./lib",
|
2022-03-14 11:01:12 +03:00
|
|
|
"rootDir": "./src",
|
|
|
|
"composite": true,
|
2022-02-22 11:45:31 +03:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"sourceMap": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"declaration": true
|
|
|
|
},
|
|
|
|
"include": [
|
2022-03-14 11:01:12 +03:00
|
|
|
"src/*"
|
2022-02-22 11:45:31 +03:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"types",
|
|
|
|
"**/*.spec.ts"
|
|
|
|
]
|
|
|
|
}
|