balena-cli/tsconfig.json

27 lines
583 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"declaration": true,
2024-09-04 14:51:51 +00:00
"module": "node16",
"moduleResolution": "node16",
"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/**/*"]
2024-09-04 14:51:51 +00:00
}