-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
56 lines (56 loc) · 1.38 KB
/
Copy pathtsconfig.json
File metadata and controls
56 lines (56 loc) · 1.38 KB
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
49
50
51
52
53
54
55
56
{
"compilerOptions": {
"useDefineForClassFields": true,
"jsx": "react-jsx",
"jsxImportSource": "preact",
"target": "esnext",
"module": "Node16",
"moduleResolution": "Node16",
"allowJs": false,
"outDir": "dist",
"removeComments": true,
"sourceMap": true,
"esModuleInterop": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"noImplicitAny": true,
"sourceRoot": "src",
"strictNullChecks": true,
"noImplicitOverride": true,
"lib": [
"es2022",
"dom",
"dom.iterable",
],
"skipLibCheck": true,
"strictPropertyInitialization": true,
"noFallthroughCasesInSwitch": false,
"paths": {
"react": [
"./node_modules/preact/compat/"
],
"react-dom": [
"./node_modules/preact/compat/"
]
},
"types": [
"vite/client",
"vitest/globals",
"node",
]
},
"include": [
"src/**/*",
"build/**/*.ts",
"eslint.config.mjs",
"vite.config.ts",
],
"exclude": [
"dist",
"node_modules",
"tests",
],
}