tsconfig.node.json 344 B

123456789101112131415161718
  1. {
  2. // "extends": "@vue/tsconfig/tsconfig.node.json",
  3. "include": [
  4. "vite.config.*",
  5. "vitest.config.*",
  6. "cypress.config.*",
  7. "playwright.config.*"
  8. ],
  9. "compilerOptions": {
  10. "ignoreDeprecations": "5.0",
  11. "module" : "ESNext",
  12. "moduleResolution": "Node",
  13. "composite": true,
  14. "types": [
  15. "node"
  16. ]
  17. }
  18. }