Files
vue-ts-example-2025/tsconfig.node.json
严浩 62a792b1da
Some checks failed
CI/CD Pipeline / playwright (push) Failing after 6m35s
CI/CD Pipeline / build-and-deploy (push) Has been skipped
chore(tsconfig): 添加 unocss 和 commitlint 配置文件到编译排除列表
2025-10-27 00:45:45 +08:00

26 lines
567 B
JSON

{
"extends": "@tsconfig/node22/tsconfig.json",
"include": [
"vite.config.*",
"vitest.config.*",
"cypress.config.*",
"nightwatch.conf.*",
"playwright.config.*",
"eslint.config.*",
"unocss.config.*",
"commitlint.config.*",
"stylelint.config.*",
"vite-plugins",
"fake/**/*"
],
"compilerOptions": {
"noEmit": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"module": "ESNext",
"moduleResolution": "Bundler",
"types": ["node"],
"allowImportingTsExtensions": true
}
}