mirror of
https://github.com/Koenkk/zigbee-OTA.git
synced 2026-06-24 11:16:34 +00:00
22 lines
511 B
JSON
22 lines
511 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"declaration": true,
|
|
"module": "ES2022",
|
|
"moduleResolution": "node",
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"noUnusedLocals": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"composite": true
|
|
},
|
|
"include": ["./src/**/*", "./eslint.config.mjs"],
|
|
"ts-node": {
|
|
"esm": true
|
|
}
|
|
}
|