fileserver/dto/tsconfig.json

19 lines
422 B
JSON
Raw Normal View History

2022-08-25 11:39:58 +00:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": false,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./src",
"incremental": true,
2022-08-25 12:16:29 +00:00
"skipLibCheck": true,
"strictPropertyInitialization": false
2022-08-25 11:39:58 +00:00
},
"exclude": ["node_modules", "dist"]
}