tsconfig.node.json 287 B

12345678910111213141516
  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. "composite": true,
  12. "types": [
  13. "node"
  14. ]
  15. }
  16. }