2024-10-28 18:36:26 +00:00
|
|
|
{
|
|
|
|
"extends": "./tsconfig.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"removeComments": true,
|
|
|
|
"noLib": false,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"target": "es6",
|
|
|
|
"sourceMap": false,
|
2024-10-29 01:20:33 +00:00
|
|
|
"outDir": "./dist",
|
2024-10-29 02:24:04 +00:00
|
|
|
"rootDir": "./libs",
|
2024-10-28 18:36:26 +00:00
|
|
|
"skipLibCheck": true,
|
|
|
|
},
|
|
|
|
"include": [
|
2024-10-29 01:20:33 +00:00
|
|
|
"libs/**/*",
|
2024-10-28 18:36:26 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"dist",
|
|
|
|
"test",
|
|
|
|
"**/*spec.ts"
|
|
|
|
]
|
|
|
|
}
|