ha-frontend/tsconfig.json

35 lines
954 B
JSON
Raw Normal View History

2018-10-15 19:07:08 +02:00
{
"compilerOptions": {
"target": "es2017",
"module": "esnext",
2018-10-15 19:07:08 +02:00
"moduleResolution": "node",
2020-05-13 11:12:01 +02:00
"lib": ["es2017", "dom", "dom.iterable", "WebWorker"],
2018-10-15 19:07:08 +02:00
"noEmit": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"strict": true,
"noImplicitAny": false,
"skipLibCheck": true,
"resolveJsonModule": true,
2019-09-02 07:00:32 +02:00
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"plugins": [
{
"name": "ts-lit-plugin",
"strict": false,
"rules": {
"no-unknown-tag-name": "error",
"no-missing-import": "error",
"no-unclosed-tag": "error",
"no-incompatible-type-binding": "warning",
"no-invalid-css": "warning",
"no-missing-element-type-definition": "warning",
"no-property-visibility-mismatch": "error"
}
}
]
2018-10-15 19:07:08 +02:00
}
}