svr-imp/tsconfig.json

18 lines
390 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
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"allowSyntheticDefaultImports": true,
2017-02-25 14:13:01 +00:00
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es6",
"sourceMap": true,
"outDir": "./dist",
2018-11-03 21:07:51 +00:00
"baseUrl": "./"
2017-02-25 14:13:01 +00:00
},
"exclude": ["node_modules"]
}