tsconfig.build.json 418 B

123456789101112131415161718
  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": ["../packages/*/__tests__", "../packages/*/src"],
  11. "include": [
  12. "../packages/global.d.ts",
  13. "../packages/*/dist",
  14. "../packages/runtime-dom/types/jsx.d.ts",
  15. "../packages/*/__tests__",
  16. "../test-dts"
  17. ]
  18. }