- 添加 .editorconfig, .gitignore, .prettierrc.json 等配置文件 - 创建项目目录结构,包括 src, test 等文件夹 - 添加 Vue 3 和 Vite 相关依赖 - 配置 ESLint, Prettier 等代码规范工具 - 添加 README.md 文件,说明项目的基本信息和操作指南
19 lines
391 B
JSON
19 lines
391 B
JSON
{
|
|
"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"]
|
|
}
|
|
}
|