diff options
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..5b95f4e --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,24 @@ +{ + "compilerOptions": { + "target": "ES2022", + "lib": [ + "DOM", + "ES2022" + ], + "rootDir": "src", + "module": "nodenext", + "moduleResolution": "nodenext", + "strict": true, + "declaration": true, + "outDir": "dist", + "sourceMap": true, + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true + }, + "include": [ + "eslint.config.mjs", + "homebridge-ui", + "src" + ] +} |
