-
Notifications
You must be signed in to change notification settings - Fork 287
/
tsconfig.json
48 lines (48 loc) · 1.08 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
42
43
44
45
46
47
48
{
"compilerOptions": {
"lib": [
"ES2022",
"dom",
"dom.iterable"
],
"module": "es2022",
"target": "es2022",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"verbatimModuleSyntax": true,
"resolveJsonModule": true,
"types": [
"vite/client"
]
},
"exclude": [
"loading/parcel",
"loading/vite",
"loading/webpack",
"loading/webpack-lazy-layout",
"loading/webpack-lazy-yfiles",
"loading/webworker-webpack",
"node_modules",
"style/angular-component-node-style",
"style/react-component-node-style",
"style/vue-component-node-style",
"style/vue-template-node-style",
"testing/cypress",
"testing/jest",
"testing/jest-puppeteer",
"testing/playwright",
"testing/selenium-webdriver",
"testing/vitest",
"testing/wdio",
"toolkit/angular",
"toolkit/next",
"toolkit/react",
"toolkit/react-class-components",
"toolkit/solid",
"toolkit/svelte",
"toolkit/vue"
]
}