mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-24 07:46:39 +00:00
c4e956712d
Change-type: major
26 lines
586 B
JSON
26 lines
586 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"target": "ES2022",
|
|
"outDir": "build",
|
|
"strict": true,
|
|
"strictPropertyInitialization": false,
|
|
"useUnknownInCatchVariables": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"preserveConstEnums": true,
|
|
"removeComments": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./node_modules/etcher-sdk/typings",
|
|
"./typings"
|
|
],
|
|
"preserveSymlinks": true
|
|
},
|
|
"include": ["./src/**/*", "./typings/**/*"]
|
|
}
|