nest-autocrud/libs/skeleton/tsconfig.lib.json

25 lines
494 B
JSON
Raw Normal View History

2024-10-26 08:35:59 +00:00
{
"extends": "../../tsconfig.json",
"compilerOptions": {
2024-10-26 10:27:12 +00:00
"module": "commonjs",
2024-10-26 08:35:59 +00:00
"declaration": true,
2024-10-26 10:27:12 +00:00
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es6",
"sourceMap": false,
2024-10-26 10:41:36 +00:00
"outDir": "../../dist/libs/skeleton",
2024-10-26 10:27:12 +00:00
"skipLibCheck": true,
2024-10-26 08:35:59 +00:00
},
2024-10-26 10:27:12 +00:00
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist",
"test",
"**/*spec.ts"
]
}