1234567891011121314151617181920212223 |
- {
- "extends": "@vue/tsconfig/tsconfig.json",
- "compilerOptions": {
- "ignoreDeprecations": "5.0",
- "sourceMap": true,
- "baseUrl": ".",
- "paths": {
- "@/*": ["./src/*"]
- },
- "lib": ["esnext", "dom"],
- "types": [
- "@dcloudio/types",
- "@uni-helper/uni-app-types",
- "@uni-helper/uni-ui-types",
- "@types/wechat-miniprogram",
- "node"
- ]
- },
- "vueCompilerOptions": {
- "plugins": ["@uni-helper/uni-app-types/volar-plugin"]
- },
- "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
- }
|