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{
"compilerOptions": {
"erasableSyntaxOnly": true,
"allowImportingTsExtensions": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"lib": [
"ESNext",
"DOM",
"DOM.Iterable"
],
"types": [
"vite/client",
"@vitejs/plugin-rsc/types"
],
"jsx": "react-jsx",
"module": "esnext",
"target": "ESNext",
"moduleResolution": "bundler",
"paths": {
"@/*": [
"./src/*"
]
}
},
"include": [
"src",
"vite.config.ts"
],
"exclude": [
"node_modules"
]
}