chore: 初始化 TypeScript monorepo

This commit is contained in:
root
2026-09-14 10:34:07 +08:00
parent 39798c2f7c
commit 332bf2fb46
11 changed files with 2601 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"types": ["vitest/globals"]
},
"include": ["packages/**/*.ts"]
}