mirror of
https://github.com/tiennm99/gsd-framework.git
synced 2026-05-26 16:01:12 +00:00
3e61fa2fd4
- Initialize Vite project with vanilla-ts configuration - Add TypeScript with strict mode enabled - Configure Vitest for testing - Create index.html with Canvas element - Add main.ts entry point with canvas setup - Add setup tests for project dependencies Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
527 B
JSON
24 lines
527 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["src"]
|
|
}
|