tsconfig.build.json 467 B

12345678910111213141516171819202122
  1. {
  2. "extends": "./tsconfig.json",
  3. "compilerOptions": {
  4. "noEmit": false,
  5. "paths": {
  6. "@vue/*": ["../packages/*/dist"],
  7. "vue": ["../packages/vue/dist"]
  8. }
  9. },
  10. "exclude": [
  11. "../packages/*/__tests__",
  12. "../packages/*/src",
  13. "../packages/template-explorer"
  14. ],
  15. "include": [
  16. "../packages/global.d.ts",
  17. "../packages/*/dist",
  18. "../packages/runtime-dom/types/jsx.d.ts",
  19. "../packages/*/__tests__",
  20. "../test-dts"
  21. ]
  22. }