mirror of
https://github.com/tauri-apps/tauri-search.git
synced 2026-02-04 02:41:20 +01:00
29 lines
688 B
JSON
29 lines
688 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "ES2020",
|
|
"lib": ["DOM", "ESNext"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"incremental": false,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"types": [
|
|
"vite/client",
|
|
"vite-plugin-pages/client",
|
|
"vite-plugin-vue-layouts/client"
|
|
],
|
|
"paths": {
|
|
"~/*": ["src/*"],
|
|
}
|
|
},
|
|
"include": ["src", "test", "vite.config.ts"],
|
|
"exclude": ["dist", "node_modules",]
|
|
}
|