mirror of
https://github.com/aditama-labs/nest-autocrud.git
synced 2024-11-21 19:06:21 +00:00
26 lines
519 B
JSON
26 lines
519 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"noImplicitAny": false,
|
|
"removeComments": true,
|
|
"noLib": false,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"target": "es6",
|
|
"sourceMap": false,
|
|
"outDir": "./dist/libs",
|
|
"skipLibCheck": true,
|
|
},
|
|
"include": [
|
|
"libs/prisma/src/**/*",
|
|
"libs/skeleton/src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"test",
|
|
"**/*spec.ts"
|
|
]
|
|
} |