homebridge-prometheus-exporter/tsconfig.json

22 lines
582 B
JSON
Raw Permalink Normal View History

2022-11-06 13:04:30 +01:00
{
2022-11-06 13:50:39 +01:00
"compilerOptions": {
"target": "ES2021",
"module": "commonjs",
"lib": ["es2015", "es2016", "es2017", "es2018"],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./",
2022-11-06 13:50:39 +01:00
"strict": true,
"esModuleInterop": true,
"importsNotUsedAsValues": "error",
2022-11-06 13:50:39 +01:00
"noImplicitAny": true,
"resolveJsonModule": true,
"tsBuildInfoFile": ".tsbuildinfo",
"incremental": true
2022-11-06 13:50:39 +01:00
},
"include": ["src/", "tests/"],
2022-11-07 22:31:17 +01:00
"exclude": []
2022-11-06 13:04:30 +01:00
}