feat: establish TypeScript-aware frontend tooling

This commit is contained in:
donghyeon-ka
2026-07-26 13:41:23 +09:00
parent 1a1747c737
commit 0fed35586a
41 changed files with 1086 additions and 125 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["node", "vite/client"]
},
"include": [
"tests/**/*.js",
"tests/**/*.jsx",
"tests/**/*.ts",
"tests/**/*.tsx",
"vitest.config.js",
"playwright.config.js"
],
"exclude": [
"dist",
"node_modules",
"tests/fixtures"
]
}