tsconfig.node.json 364 B

123456789101112131415161718
  1. {
  2. "extends": "@tsconfig/node18/tsconfig.json",
  3. "include": [
  4. "vite.config.*",
  5. "vitest.config.*",
  6. "cypress.config.*",
  7. "nightwatch.conf.*",
  8. "playwright.config.*"
  9. ],
  10. "compilerOptions": {
  11. "target": "ES2020",
  12. "lib": ["dom"],
  13. "composite": true,
  14. "module": "ESNext",
  15. "moduleResolution": "Bundler",
  16. "types": ["node"]
  17. }
  18. }