2017-11-23 11:53:28 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2018-08-17 12:06:41 +00:00
|
|
|
"target": "es6",
|
2017-11-23 11:53:28 +00:00
|
|
|
"outDir": "build",
|
|
|
|
"strict": true,
|
2018-07-17 14:48:14 +00:00
|
|
|
"strictPropertyInitialization": false,
|
2017-11-23 11:53:28 +00:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"removeComments": true,
|
2017-12-20 21:46:01 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"lib": [
|
|
|
|
// es5 defaults:
|
|
|
|
"dom",
|
|
|
|
"es5",
|
|
|
|
"scripthost",
|
|
|
|
// some specific es6 bits we're sure are safe:
|
|
|
|
"es2015.collection",
|
|
|
|
"es2015.iterable",
|
|
|
|
"es2016.array.include"
|
|
|
|
]
|
2017-11-23 11:53:28 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2017-12-19 17:00:31 +00:00
|
|
|
"./typings/*.d.ts",
|
2017-11-23 11:53:28 +00:00
|
|
|
"./lib/**/*.ts"
|
|
|
|
]
|
|
|
|
}
|