NestjsDemo/tsconfig.json

16 lines
417 B
JSON
Raw Normal View History

2023-11-13 07:31:26 +00:00
{
2023-11-19 10:00:45 +00:00
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
}
}