svr-imp/tsconfig.json

18 lines
411 B
JSON
Raw Normal View History

2017-02-25 14:13:01 +00:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
2017-02-25 14:13:01 +00:00
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2023",
2017-02-25 14:13:01 +00:00
"sourceMap": true,
2019-01-18 13:34:05 +00:00
"outDir": "./dist",
"baseUrl": "./",
2021-07-12 10:18:14 +00:00
"incremental": true,
"forceConsistentCasingInFileNames": true,
2021-07-12 10:18:14 +00:00
"skipLibCheck": true
2020-06-01 09:16:45 +00:00
}
}