balena-cli/tsconfig.json
Pagan Gazzard 1d4b949cf3 Convert lib/utils/deploy-legacy to typescript
Change-type: patch
2022-01-03 16:10:17 +00:00

28 lines
560 B
JSON

{
"compilerOptions": {
"declaration": true,
"module": "commonjs",
"target": "es2018",
"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": [
"./lib/**/*",
"./typings/**/*"
]
}