24 lines
561 B
JSON
24 lines
561 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"module": "ESNext",
|
|
"noEmit": true,
|
|
"moduleResolution": "Bundler",
|
|
"target": "ES2022",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"types": ["vite/client", "vike-react"],
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "react",
|
|
"paths": {
|
|
"~/*": ["./*"]
|
|
}
|
|
},
|
|
"exclude": ["dist"]
|
|
}
|