2016-03-26 23:57:37 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
2017-03-10 08:54:55 +01:00
|
|
|
"strictNullChecks": true,
|
2016-03-26 23:57:37 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"preserveConstEnums": true,
|
2016-03-28 00:53:24 +01:00
|
|
|
"outDir": "../build",
|
2016-03-26 23:57:37 +00:00
|
|
|
"sourceRoot": "./",
|
2016-03-28 00:53:24 +01:00
|
|
|
"rootDir": "./",
|
2017-07-07 14:31:08 +01:00
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true
|
2016-03-27 03:09:50 +01:00
|
|
|
},
|
|
|
|
"exclude": [
|
2017-09-17 00:00:41 +01:00
|
|
|
"tests",
|
|
|
|
"**/*.spec.ts",
|
|
|
|
"**/_*"
|
2016-03-27 03:09:50 +01:00
|
|
|
]
|
2017-03-10 08:54:55 +01:00
|
|
|
}
|