svr-imp/tsconfig.json

17 lines
378 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,
2019-06-24 19:26:18 +00:00
"target": "es2017",
2017-02-25 14:13:01 +00:00
"sourceMap": true,
2019-01-18 13:34:05 +00:00
"outDir": "./dist",
"baseUrl": "./",
2019-06-24 19:26:18 +00:00
"incremental": true
2017-02-25 14:13:01 +00:00
},
"exclude": ["node_modules", "dist"]
}