15 lines
327 B
JSON
15 lines
327 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"noEmit": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"jsx": "react-jsx",
|
|
"skipLibCheck": true,
|
|
"strict": true
|
|
},
|
|
"include": ["node_modules/vite/client.d.ts", "**/*"],
|
|
"exclude": ["dist/**"]
|
|
}
|