2019-02-28 11:29:26 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"noImplicitAny": false,
|
2020-08-14 14:01:39 +03:00
|
|
|
"removeComments": false,
|
2019-02-28 11:29:26 +03:00
|
|
|
"noLib": false,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
2021-01-03 15:35:18 +03:00
|
|
|
"target": "es2017",
|
2020-01-12 14:18:48 +03:00
|
|
|
"sourceMap": false,
|
2021-01-03 16:52:11 +03:00
|
|
|
"rootDir": "./lib",
|
2019-02-28 11:29:26 +03:00
|
|
|
"outDir": "./dist",
|
2020-01-12 14:18:48 +03:00
|
|
|
"skipLibCheck": true
|
2019-02-28 11:29:26 +03:00
|
|
|
},
|
2021-01-03 16:52:11 +03:00
|
|
|
"include": ["lib/**/*"],
|
2020-01-12 14:18:48 +03:00
|
|
|
"exclude": ["node_modules", "**/*.spec.ts"]
|
2019-02-28 11:29:26 +03:00
|
|
|
}
|