{ "compilerOptions": { "target": "ES2021", "useDefineForClassFields": true, "lib": ["ES2021", "DOM", "DOM.Iterable"], "module": "ESNext", "skipLibCheck": true, /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, "isolatedModules": true, "moduleDetection": "force", "noEmit": true, "jsx": "react-jsx", /* Linting */ "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, "noUncheckedSideEffectImports": true, /* Path aliases */ "baseUrl": ".", "paths": { "@/*": ["./src/*"] } }, // app/ is now the Tauri Rust shell (app/src-tauri/); the React UI lives in // apps/web. The only TypeScript that remains under app/ is the build/installer/ // signing tooling in scripts/, so the tauri-tsc gate typechecks that. "include": ["scripts"] }