svr-imp/tsconfig.json

17 lines
382 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,
"target": "es6",
"sourceMap": true,
2019-01-18 13:34:05 +00:00
"outDir": "./dist",
"baseUrl": "./",
2019-04-11 19:39:42 +00:00
"incremental": true,
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
2017-02-25 14:13:01 +00:00
},
"exclude": ["node_modules", "dist"]
}