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

25 lines
492 B
JSON
Raw Permalink Normal View History

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