Files
vue-ts-example/tsconfig.node.json
严浩 09d2779f7c
All checks were successful
/ build-and-deploy-to-vercel (push) Successful in 1m32s
/ playwright (push) Successful in 1m3s
/ depcheck (push) Successful in 1m28s
feat: 更新 TypeScript 配置文件,添加引用链接以便于维护和参考
2025-01-02 23:12:58 +08:00

20 lines
499 B
JSON

{
"extends": "@tsconfig/node22/tsconfig.json", // https://github.com/vuejs/create-vue/blob/main/template/tsconfig/base/tsconfig.node.json
"include": [
"vite.config.*",
"vitest.config.*",
"cypress.config.*",
"nightwatch.conf.*",
"playwright.config.*",
"fake/**/*"
],
"compilerOptions": {
"noEmit": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"module": "ESNext",
"moduleResolution": "Bundler",
"types": ["node"]
}
}