mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-18 21:27:51 +00:00
b3b22d6399
Change-type: patch
27 lines
520 B
JSON
27 lines
520 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"module": "commonjs",
|
|
"target": "es2017",
|
|
"outDir": "build",
|
|
"strict": true,
|
|
"strictPropertyInitialization": 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,
|
|
"allowJs": true
|
|
},
|
|
"include": [
|
|
"./lib/**/*"
|
|
]
|
|
}
|