1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./base.json",
"Display": "Vite",
"compilerOptions": {
"allowJs": false,
"esModuleInterop": false,
"jsx": "react",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "ESNext",
"noEmit": true,
"resolveJsonModule": true,
"skipLibCheck": false,
"target": "ESNext",
"types": ["vite/client"]
}
}
|