-
-
Notifications
You must be signed in to change notification settings - Fork 632
/
Copy pathtsconfig.json
33 lines (33 loc) · 908 Bytes
/
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
{
"compilerOptions": {
"target": "ES2022",
"module": "Node16",
"moduleResolution": "Node16",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"strictNullChecks": false,
"preserveConstEnums": true,
"resolveJsonModule": true,
"isolatedModules": true,
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"ignoreDeprecations": "5.0",
"noEmit": true,
"types": ["vitest/globals", "@vitest/browser/matchers", "@vitest/browser/providers/playwright", "node"],
"skipLibCheck": true
},
"files": ["src/index.ts"],
"include": [
"src/**/*.ts",
"test/**/*.ts",
"test-runtime/**/*.ts",
"site/static/**/*.ts",
"examples/*.test.ts",
"vitest.workspace.ts",
"vitest.global-setup.ts"
],
"exclude": ["build/**/*"]
}