mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-22 04:17:20 +00:00
34 lines
900 B
JSON
34 lines
900 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"lib": ["es2017", "dom", "dom.iterable", "WebWorker"],
|
|
"noEmit": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"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"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|