tomodachi-share/frontend/tsconfig.app.json
Lepre-CHAU-n 13b2bef574 feat: mii edit UX, a11y fixes, and frontend unit tests
- API: return success message on mii edit
- FE: flash banner + helpers, submit response helper, Vitest
- A11y: labels, alt text, banner close; css checkerboard class
- DX: root tsconfig refs, strict/tsconfig, next dev --webpack

Made-with: Cursor
2026-04-29 00:25:17 -07:00

28 lines
715 B
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "es2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "esnext",
"types": ["vite/client", "node"],
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"noUnusedLocals": true,
"noUnusedParameters": true
// "erasableSyntaxOnly": true
// "noFallthroughCasesInSwitch": true
},
"include": ["src"],
"exclude": ["**/*.test.ts", "**/*.test.tsx"]
}