tsconfig.node.json 356 B

123456789101112
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.json",
  3. "include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "playwright.config.*", "src/**/*.ts"],
  4. "compilerOptions": {
  5. "composite": true,
  6. "lib": ["ES2023"],
  7. "types": ["node"],
  8. "allowSyntheticDefaultImports": true,
  9. "esModuleInterop": true,
  10. "ignoreDeprecations": "6.0"
  11. }
  12. }