svr-imp/tsconfig.json

24 lines
456 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",
"baseUrl": "./src"
2017-02-25 14:13:01 +00:00
},
2017-05-14 20:58:46 +00:00
"include": [
"src/**/*"
],
2017-02-25 14:13:01 +00:00
"exclude": [
2017-05-14 20:58:46 +00:00
"node_modules",
"**/*.spec.ts"
2017-02-25 14:13:01 +00:00
]
}