2017-11-23 11:53:28 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-08-07 11:31:03 +00:00
|
|
|
"declaration": true,
|
2017-11-23 11:53:28 +00:00
|
|
|
"module": "commonjs",
|
2020-06-01 12:29:28 +00:00
|
|
|
"target": "es2018",
|
2017-11-23 11:53:28 +00:00
|
|
|
"outDir": "build",
|
|
|
|
"strict": true,
|
2018-07-17 14:48:14 +00:00
|
|
|
"strictPropertyInitialization": false,
|
2021-12-21 18:24:26 +00:00
|
|
|
"useUnknownInCatchVariables": 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,
|
2018-10-16 11:53:16 +00:00
|
|
|
"skipLibCheck": true,
|
2023-10-27 14:57:07 +00:00
|
|
|
"typeRoots": [
|
2019-04-25 17:39:16 +00:00
|
|
|
"./node_modules/@types",
|
|
|
|
"./node_modules/etcher-sdk/typings",
|
|
|
|
"./typings"
|
2020-03-24 15:55:37 +00:00
|
|
|
],
|
2022-01-03 16:00:04 +00:00
|
|
|
"preserveSymlinks": true
|
2017-11-23 11:53:28 +00:00
|
|
|
},
|
2023-10-27 14:57:07 +00:00
|
|
|
"include": ["./lib/**/*", "./typings/**/*"]
|
2017-11-23 11:53:28 +00:00
|
|
|
}
|