tsconfig.node.json 414 B

12345678910111213141516171819
  1. {
  2. "extends": "@tsconfig/node20/tsconfig.json",
  3. "compilerOptions": {
  4. "composite": true,
  5. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
  6. "module": "ESNext",
  7. "moduleResolution": "Bundler",
  8. "types": ["node"],
  9. "noEmit": true
  10. },
  11. "include": [
  12. "vite.config.*",
  13. "vitest.config.*",
  14. "cypress.config.*",
  15. "nightwatch.conf.*",
  16. "playwright.config.*"
  17. ]
  18. }