fileserver/tsconfig.json

18 lines
413 B
JSON
Raw Normal View History

2022-08-17 19:59:51 +00:00
{
"compilerOptions": {
"module": "commonjs",
2022-08-22 14:52:02 +00:00
"declaration": false,
2022-08-17 19:59:51 +00:00
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true
2022-08-22 16:10:41 +00:00
},
"exclude": ["node_modules", "dist", "test", "**/*spec.ts", "frontend"]
2022-08-17 19:59:51 +00:00
}