2017-02-25 14:13:01 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs",
|
2018-04-22 10:42:34 +00:00
|
|
|
"declaration": true,
|
2017-02-25 14:13:01 +00:00
|
|
|
"noImplicitAny": false,
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"noLib": false,
|
2017-12-17 17:33:45 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2017-02-25 14:13:01 +00:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"target": "es6",
|
|
|
|
|
"sourceMap": true,
|
2018-03-26 18:39:15 +00:00
|
|
|
"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
|
|
|
]
|
2017-12-17 17:33:45 +00:00
|
|
|
}
|