mirror of
https://github.com/tauri-apps/tauri-search.git
synced 2026-02-04 10:51:19 +01:00
23 lines
560 B
JSON
23 lines
560 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "ES2020",
|
|
"lib": ["DOM", "ESNext"],
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"incremental": false,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"types": ["vite/client"],
|
|
|
|
"baseUrl": "."
|
|
},
|
|
"include": ["**/src", "**/test"],
|
|
"exclude": ["**/dist", "**/node_modules", "**/bin"]
|
|
}
|