grafana-to-ntfy/tsconfig.json

23 lines
593 B
JSON
Raw Normal View History

2023-03-11 17:33:00 +01:00
{
"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"]
}