balena-cli/tsconfig.json

26 lines
586 B
JSON
Raw Normal View History

{
"compilerOptions": {
"declaration": true,
2024-12-19 18:31:07 +00:00
"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/**/*"]
}