tsconfig.node.json 365 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. "vitePlugin/*.ts",
  10. ],
  11. "compilerOptions": {
  12. "composite": true,
  13. "noEmit": true,
  14. "module": "ESNext",
  15. "moduleResolution": "Bundler",
  16. "types": ["node"]
  17. }
  18. }