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",
|
2018-11-03 21:07:51 +00:00
|
|
|
"baseUrl": "./"
|
2017-02-25 14:13:01 +00:00
|
|
|
},
|
2018-11-03 21:07:51 +00:00
|
|
|
"include": ["src/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "**/*.spec.ts"]
|
2017-12-17 17:33:45 +00:00
|
|
|
}
|