grafana-to-ntfy/tsconfig.json
Sébastien CUVELLIER 4be2a8eca2 🚧 First release
2023-03-11 17:33:00 +01:00

22 lines
593 B
JSON

{
"compilerOptions": {
"lib": ["ESNext"],
"module": "commonjs",
"moduleResolution": "node",
"target": "ESNext",
"allowJs": true,
"outDir": "dist",
"sourceMap": false,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"resolveJsonModule": true,
"importHelpers": true,
"strict": true,
},
"include": ["src"],
"exclude": ["node_modules", "**/*.spec.ts", "config"]
}