27 lines
574 B
JSON
27 lines
574 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"baseUrl": ".",
|
||
|
"module": "ESNext",
|
||
|
"target": "es2016",
|
||
|
"lib": ["DOM", "ESNext"],
|
||
|
"strict": true,
|
||
|
"jsx": "preserve",
|
||
|
"esModuleInterop": true,
|
||
|
"skipLibCheck": true,
|
||
|
"moduleResolution": "node",
|
||
|
"resolveJsonModule": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"strictNullChecks": true,
|
||
|
"allowJs": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"types": [
|
||
|
"vite/client",
|
||
|
"vite-plugin-pages/client"
|
||
|
],
|
||
|
"paths": {
|
||
|
"~/*": ["src/*"]
|
||
|
}
|
||
|
},
|
||
|
"exclude": ["dist", "node_modules"]
|
||
|
}
|