tsconfig.node.json 420 B

123456789101112131415161718
  1. {
  2. "extends": "./tsconfig.base.json",
  3. "compilerOptions": {
  4. "composite": true,
  5. "lib": ["ESNext"],
  6. "types": ["node"],
  7. "skipLibCheck": true
  8. },
  9. "include": [
  10. "internal/**/*",
  11. "internal/**/*.json",
  12. "scripts/**/*",
  13. "packages/theme-chalk/*",
  14. "packages/element-plus/version.ts",
  15. "packages/element-plus/package.json"
  16. ],
  17. "exclude": ["**/__tests__/**", "**/tests/**", "**/dist"]
  18. }