- Optimize dashboard Vite output for mobile and include vite/client types in app typecheck - Add PWA support with manifest, service worker, icons, and client registration hooks - Add a mobile workspace package with Capacitor config and live-reload scripts for local development - Add a dedicated GitHub Actions mobile pipeline and update mobile workflow documentation - Add dashboard tests for build output, mobile scripts, and PWA asset coverage
14 lines
362 B
JSON
14 lines
362 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"jsx": "react-jsx",
|
|
"moduleResolution": "bundler",
|
|
"module": "ESNext",
|
|
"noEmit": true,
|
|
"types": ["vitest/globals", "@testing-library/jest-dom", "node", "vite/client"]
|
|
},
|
|
"include": ["app/**/*"],
|
|
"exclude": ["app/**/*.test.ts", "app/**/*.test.tsx"]
|
|
}
|