1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "extends": "@vue/tsconfig/tsconfig.json",
- "compilerOptions": {
- "allowJs": true,
- "sourceMap": true,
- "baseUrl": ".",
- "paths": {
- "@/*": [
- "./src/*"
- ]
- },
- "lib": [
- "esnext",
- "dom"
- ],
- "types": [
- "@dcloudio/types",
- // "miniprogram-api-typings",
- // // "@uni-helper/uni-app-types"
- // "@uni-helper/uni--types"
- ]
- },
- "vueCompilerOptions": {
- // experimentalRuntimeMode 已废弃,现调整为 nativeTags,请升级 Volar 插件至最新版本
- // "nativeTags": [
- // "block",
- // "component",
- // "template",
- // "slot"
- // ]
- },
- "include": [
- "src/**/*.ts",
- "src/**/*.d.ts",
- "src/**/*.tsx",
- "src/**/*.vue"
- ]
- }
|