fileserver/dto/tsconfig.json

19 lines
419 B
JSON
Raw Normal View History

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