fileserver/tsconfig.json

17 lines
340 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
}
}