tsconfig.json 678 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "outDir": "dist",
  5. "sourceMap": false,
  6. "target": "esnext",
  7. "module": "esnext",
  8. "moduleResolution": "node",
  9. // "declaration": true,
  10. "allowJs": false,
  11. "noUnusedLocals": true,
  12. "strictNullChecks": true,
  13. "noImplicitAny": true,
  14. "experimentalDecorators": true,
  15. "removeComments": false,
  16. "lib": [
  17. "esnext",
  18. "dom"
  19. ],
  20. "rootDir": ".",
  21. "paths": {
  22. "@vue/core": ["packages/core/src"],
  23. "@vue/observer": ["packages/observer/src"],
  24. "@vue/scheduler": ["packages/scheduler/src"]
  25. }
  26. },
  27. "include": [
  28. "packages/global.d.ts",
  29. "packages/*/src"
  30. ]
  31. }