-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
tsconfig.json
41 lines (40 loc) · 1.27 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"compilerOptions": {
"outDir": "./dist/",
"module": "esnext",
"target": "es6",
"moduleResolution": "Bundler",
"allowJs": true,
"strict": true,
"checkJs": true,
"noImplicitAny": true,
"declaration": true,
"declarationMap": true,
"declarationDir": "./dist/lib/types",
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"importHelpers": true,
"sourceMap": true,
"inlineSources": true,
"plugins": [
{
"name": "ts-lit-plugin",
"strict": true,
"rules": {
// This seems to produce a bunch of false positives, so we've turned it off for now.
// Relevant issues:
// https://github.com/runem/lit-analyzer/issues/293
// https://github.com/runem/lit-analyzer/issues/302
// https://github.com/runem/lit-analyzer/issues/266
"no-missing-import": "off",
// ts-lit-plugin also doesn't seem to understand string interpolations in CSS, so this is also turned off.
"no-invalid-css": "off"
}
}
],
"skipLibCheck": true,
"paths": { "@/*": ["./*"] },
"lib": ["dom", "dom.iterable", "webworker", "esnext", "webworker.iterable"]
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.js"]
}