mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2024-11-16 10:28:33 -07:00
7b65dc631b
* Enable Typescript * Fix tests * Fix tests again * Automatically (re)build * Updates * Updates * Update shrinkwrap * Enable sourcemaps
28 lines
652 B
JSON
28 lines
652 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"target": "es2018",
|
|
"lib": ["es2018"],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"rootDir": "lib",
|
|
"inlineSourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"*": [
|
|
"node_modules/*",
|
|
"lib/types/*"
|
|
]
|
|
},
|
|
},
|
|
"include": [
|
|
"lib/**/*"
|
|
],
|
|
} |