forked from ChromeDevTools/devtools-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 706 Bytes
/
tsconfig.json
File metadata and controls
34 lines (34 loc) · 706 Bytes
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
{
"extends": "./config/typescript/tsconfig.base.json",
"compilerOptions": {
"allowUmdGlobalAccess": true,
"lib": [
"esnext",
"dom",
"dom.iterable",
"webworker",
"webworker.iterable"
],
"outDir": "ignored-for-vscode",
"plugins": [
{
"name": "ts-lit-plugin",
"rules": {
"no-complex-attribute-binding": "off",
"no-missing-import": "error",
"no-unknown-tag-name": "error",
"no-unclosed-tag": "error"
}
}
]
},
"include": [
"front_end/",
"test/",
"inspector_overlay"
],
"exclude": [
"front_end/**/*-legacy.ts",
"test/e2e_non_hosted/types.d.ts"
]
}