tsconfig.node.json 431 B

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