mirror of
https://github.com/tiennm99/ai-labs.git
synced 2026-09-09 05:09:43 +00:00
Convert all 41 TypeScript source/config files in cc4e-course/quiz-project (Next.js), gstack (Astro), and superpowers (Vite/React/Phaser) to plain JavaScript with JSDoc type annotations, replacing tsconfig.json with jsconfig.json (strict + checkJs) in each subproject. No behavior changes: lint, typecheck, test, and build gates match their TypeScript baselines exactly in all three subprojects. Update stack references in the affected READMEs accordingly.
30 lines
710 B
JSON
30 lines
710 B
JSON
{
|
|
"name": "pikachu-onet",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -p jsconfig.json --noEmit && vite build",
|
|
"preview": "vite preview",
|
|
"test": "vitest run",
|
|
"typecheck": "tsc -p jsconfig.json --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"phaser": "^3.88.2",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^6.6.3",
|
|
"@testing-library/react": "^16.3.0",
|
|
"@types/react": "^18.3.18",
|
|
"@types/react-dom": "^18.3.5",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"jsdom": "^26.1.0",
|
|
"typescript": "~5.7.2",
|
|
"vite": "^6.3.1",
|
|
"vitest": "^3.1.1"
|
|
}
|
|
}
|