mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-07-02 10:01:37 +00:00
48d77e4b5e
* Enforce TS `strict` type checking. * updates * updates * updates * Updates * Updates * pretty * u * u * u * Updates * updates * Updates * Updates * `ReadonlyArray` * scenesChanged * objectID * Improve coverage * u * u * process feedback --------- Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
25 lines
686 B
JSON
25 lines
686 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"rootDir": "lib",
|
|
"inlineSourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": ["lib/**/*", "lib/util/settings.schema.json"],
|
|
"exclude": ["node_modules"]
|
|
}
|