mirror of
https://github.com/trafficlunar/tomodachi-share.git
synced 2026-05-13 13:17:45 +00:00
- 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
28 lines
715 B
JSON
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"]
|
|
}
|