mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-18 21:27:54 +00:00
6217546894
This also updates code to use the default import syntax instead of `import * as` when the imported module exposes a default. This is needed with the latest typescript version. Change-type: patch
39 lines
736 B
JSON
39 lines
736 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"target": "ES2022",
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"strict": true,
|
|
"strictFunctionTypes": false,
|
|
"strictPropertyInitialization": false,
|
|
"preserveConstEnums": true,
|
|
"inlineSourceMap": true,
|
|
"outDir": "./build/",
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"paths": {
|
|
"~/src/*": [
|
|
"src/*"
|
|
],
|
|
"~/lib/*": [
|
|
"src/lib/*"
|
|
],
|
|
"~/test-lib/*": [
|
|
"test/lib/*"
|
|
],
|
|
"~/test-data/*": [
|
|
"test/data/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"test/**/*",
|
|
"typings/**/*.d.ts",
|
|
"sync/**/*",
|
|
"build-utils/**/*"
|
|
]
|
|
}
|