2017-11-23 12:53:28 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2019-04-25 18:39:16 +01:00
|
|
|
"target": "es2017",
|
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,
|
2019-04-25 18:39:16 +01:00
|
|
|
"typeRoots" : [
|
|
|
|
"./node_modules/@types",
|
|
|
|
"./node_modules/etcher-sdk/typings",
|
|
|
|
"./typings"
|
2017-12-20 22:46:01 +01:00
|
|
|
]
|
2017-11-23 12:53:28 +01:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./lib/**/*.ts"
|
|
|
|
]
|
|
|
|
}
|