16 lines
333 B
JSON
16 lines
333 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["DOM", "ES2020"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"types": ["vite/client"]
|
|
},
|
|
"include": ["src", "vite-env.d.ts"]
|
|
}
|