2016-07-01 18:45:44 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
2017-03-10 17:45:16 +01:00
|
|
|
"strictNullChecks": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"preserveConstEnums": true,
|
2017-12-29 01:11:59 +00:00
|
|
|
"outDir": "./build-tests",
|
|
|
|
"sourceRoot": "./src",
|
|
|
|
"rootDir": "./src",
|
2017-12-06 01:03:14 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
"noUnusedLocals": true
|
2017-09-17 00:00:41 +01:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"**/*.spec.ts",
|
|
|
|
"**/*.d.ts"
|
2017-12-29 01:11:59 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
2017-09-17 00:00:41 +01:00
|
|
|
]
|
2017-03-07 13:34:01 +01:00
|
|
|
}
|