2017-11-23 12:53:28 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2018-08-17 13:06:41 +01:00
|
|
|
"target": "es6",
|
2017-11-23 12:53:28 +01:00
|
|
|
"outDir": "build",
|
|
|
|
"strict": true,
|
2018-07-17 16:48:14 +02:00
|
|
|
"strictPropertyInitialization": false,
|
2017-11-23 12:53:28 +01:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"removeComments": true,
|
2017-12-20 22:46:01 +01:00
|
|
|
"sourceMap": true,
|
2018-10-16 12:53:16 +01:00
|
|
|
"skipLibCheck": true,
|
2017-12-20 22:46:01 +01:00
|
|
|
"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 12:53:28 +01:00
|
|
|
},
|
|
|
|
"include": [
|
2017-12-19 18:00:31 +01:00
|
|
|
"./typings/*.d.ts",
|
2018-12-11 17:33:26 +01:00
|
|
|
"./node_modules/etcher-sdk/typings/**/*.d.ts",
|
2017-11-23 12:53:28 +01:00
|
|
|
"./lib/**/*.ts"
|
|
|
|
]
|
|
|
|
}
|