feat: bootstrap Vite and pnpm toolchain contract

This commit is contained in:
donghyeon-ka
2026-07-25 20:39:06 +09:00
parent 91ae42a2a7
commit 7b35f6b551
17 changed files with 952 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"noEmit": true,
"target": "ES2022",
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"allowImportingTsExtensions": false,
"jsx": "react-jsx",
"strict": true,
"skipLibCheck": true,
"types": ["vite/client", "node"]
},
"include": ["src", "scripts", "vite.config.js"],
"exclude": ["dist", "node_modules", "tests/fixtures"]
}