mirror of
https://github.com/ckaczor/HomeStatus.git
synced 2026-01-14 01:25:40 -05:00
32 lines
504 B
JSON
32 lines
504 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"target": "es5",
|
|
"strict": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictNullChecks": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"rootDir": ".",
|
|
"sourceMap": true,
|
|
"lib": [
|
|
"dom",
|
|
"es2017"
|
|
],
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"src/typings"
|
|
],
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|