mirror of
https://github.com/hay-kot/homebox.git
synced 2024-12-18 21:16:31 +00:00
18 lines
394 B
JSON
18 lines
394 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es2020",
|
||
|
"module": "commonjs",
|
||
|
"outDir": "build",
|
||
|
"sourceMap": true,
|
||
|
"allowJs": true,
|
||
|
"checkJs": false,
|
||
|
"resolveJsonModule": true,
|
||
|
"skipLibCheck": true,
|
||
|
"strict": false,
|
||
|
"esModuleInterop": true,
|
||
|
"removeComments": true
|
||
|
},
|
||
|
"include": ["client/**/*", "test/**/*"],
|
||
|
"exclude": ["node_modules", "**/*.spec.ts"]
|
||
|
}
|