tsconfig.json 524 B

12345678910111213141516171819202122
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.json",
  3. "compilerOptions": {
  4. "ignoreDeprecations": "5.0",
  5. "sourceMap": true,
  6. "baseUrl": ".",
  7. "paths": {
  8. "@/*": ["./src/*"]
  9. },
  10. "lib": ["esnext", "dom"],
  11. "types": [
  12. "@dcloudio/types",
  13. "@uni-helper/uni-app-types",
  14. "@uni-helper/uni-ui-types",
  15. "node"
  16. ]
  17. },
  18. "vueCompilerOptions": {
  19. "plugins": ["@uni-helper/uni-app-types/volar-plugin"]
  20. },
  21. "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
  22. }