balena-cli/tsconfig.json
Pagan Gazzard d6f1328238 Be lazier with imports in oclif actions
Change-type: patch
2020-07-09 15:03:38 +01:00

28 lines
540 B
JSON

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