tsconfig.config.json 309 B

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