Files
mysa2mqtt/tsconfig.json

19 lines
373 B
JSON

{
"compilerOptions": {
"esModuleInterop": true,
"moduleResolution": "node",
"skipLibCheck": true,
"allowJs": false,
"strict": true,
"noEmit": true,
"resolveJsonModule": true,
"module": "ESNext",
"lib": ["ES2022"],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist"]
}