homebridge-harmony-control/tsconfig.json

16 lines
339 B
JSON
Raw Permalink Normal View History

2019-06-11 17:32:22 +00:00
{
2020-12-12 02:59:29 +00:00
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"declaration": true,
"outDir": "./bin",
"strict": true,
"sourceMap": true,
2021-12-28 19:48:02 +00:00
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
2020-12-12 02:59:29 +00:00
},
"include": ["src"],
"exclude": ["**/node_modules", "**/__tests__/*"]
}