chore: add workspace and package configuration

This commit is contained in:
2026-08-29 18:59:25 +08:00
parent c25b162175
commit 2ca064d303
7 changed files with 8113 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"types": ["node", "vitest/globals"],
"allowImportingTsExtensions": true,
"noEmit": true
},
"include": ["scripts/**/*.ts", "tests/**/*.ts", "playwright.config.ts", "vitest.config.ts"]
}