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
+19
View File
@@ -0,0 +1,19 @@
{
"name": "drift-bottle",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@9.15.0",
"scripts": {
"test": "vitest run",
"typecheck": "tsc --noEmit -p tsconfig.base.json",
"lint": "eslint . --ext .ts --max-warnings 0 && prettier --check ."
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^8.57.1",
"prettier": "^3.4.2",
"typescript": "^5.6.3",
"vitest": "^2.1.8"
}
}