Files
vue-ts-example/tsconfig.node.json
严浩 53188ff9cf
Some checks failed
/ depcheck (push) Successful in 1m32s
/ playwright (push) Successful in 1m41s
/ build-and-deploy-to-vercel (push) Failing after 6m28s
feat: 更新 ESLint 配置,支持更多语言,调整 npm 镜像源
2025-01-22 11:54:35 +08:00

21 lines
522 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.*",
"eslint.config.*",
"fake/**/*"
],
"compilerOptions": {
"noEmit": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"module": "ESNext",
"moduleResolution": "Bundler",
"types": ["node"]
}
}