21 lines
428 B
JSON
21 lines
428 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"types": ["vite/client"],
|
|
"isolatedModules": true,
|
|
"baseUrl": ".",
|
|
"ignoreDeprecations": "6.0",
|
|
"paths": {
|
|
"~/*": ["./src/*"]
|
|
}
|
|
}
|
|
}
|