balena-cli/tsconfig.json
Otavio Jacobi 4760866c77 Update all references of lib to src
Change-type: patch
2024-08-22 13:03:37 -03:00

25 lines
552 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": ["./src/**/*", "./typings/**/*"]
}