项目初始化

This commit is contained in:
2025-01-05 10:35:08 +08:00
commit 3d05cd5f71
28 changed files with 3760 additions and 0 deletions

18
tsconfig.node.json Normal file
View File

@@ -0,0 +1,18 @@
{
"extends": "@tsconfig/node22/tsconfig.json",
"include": [
"vite.config.*",
"vitest.config.*",
"cypress.config.*",
"nightwatch.conf.*",
"playwright.config.*"
],
"compilerOptions": {
"noEmit": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"module": "ESNext",
"moduleResolution": "Bundler",
"types": ["node"]
}
}