创建taro小程序项目
This commit is contained in:
		
							
								
								
									
										12
									
								
								miniprogram-taro/.editorconfig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								miniprogram-taro/.editorconfig
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,12 @@
 | 
			
		||||
# http://editorconfig.org
 | 
			
		||||
root = true
 | 
			
		||||
 | 
			
		||||
[*]
 | 
			
		||||
indent_style = space
 | 
			
		||||
indent_size = 2
 | 
			
		||||
charset = utf-8
 | 
			
		||||
trim_trailing_whitespace = true
 | 
			
		||||
insert_final_newline = true
 | 
			
		||||
 | 
			
		||||
[*.md]
 | 
			
		||||
trim_trailing_whitespace = false
 | 
			
		||||
							
								
								
									
										5
									
								
								miniprogram-taro/.eslintrc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								miniprogram-taro/.eslintrc
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
			
		||||
// ESLint 检查 .vue 文件需要单独配置编辑器:
 | 
			
		||||
// https://eslint.vuejs.org/user-guide/#editor-integrations
 | 
			
		||||
{
 | 
			
		||||
  "extends": ["taro/vue3"]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								miniprogram-taro/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								miniprogram-taro/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,6 @@
 | 
			
		||||
dist/
 | 
			
		||||
deploy_versions/
 | 
			
		||||
.temp/
 | 
			
		||||
.rn_temp/
 | 
			
		||||
node_modules/
 | 
			
		||||
.DS_Store
 | 
			
		||||
							
								
								
									
										10
									
								
								miniprogram-taro/babel.config.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								miniprogram-taro/babel.config.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,10 @@
 | 
			
		||||
// babel-preset-taro 更多选项和默认值:
 | 
			
		||||
// https://github.com/NervJS/taro/blob/next/packages/babel-preset-taro/README.md
 | 
			
		||||
module.exports = {
 | 
			
		||||
  presets: [
 | 
			
		||||
    ['taro', {
 | 
			
		||||
      framework: 'vue3',
 | 
			
		||||
      ts: false
 | 
			
		||||
    }]
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										9
									
								
								miniprogram-taro/config/dev.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								miniprogram-taro/config/dev.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,9 @@
 | 
			
		||||
module.exports = {
 | 
			
		||||
  env: {
 | 
			
		||||
    NODE_ENV: '"development"'
 | 
			
		||||
  },
 | 
			
		||||
  defineConstants: {
 | 
			
		||||
  },
 | 
			
		||||
  mini: {},
 | 
			
		||||
  h5: {}
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										82
									
								
								miniprogram-taro/config/index.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										82
									
								
								miniprogram-taro/config/index.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,82 @@
 | 
			
		||||
const config = {
 | 
			
		||||
  projectName: '社区疫情防控系统',
 | 
			
		||||
  date: '2022-11-21',
 | 
			
		||||
  designWidth: 750,
 | 
			
		||||
  deviceRatio: {
 | 
			
		||||
    640: 2.34 / 2,
 | 
			
		||||
    750: 1,
 | 
			
		||||
    828: 1.81 / 2
 | 
			
		||||
  },
 | 
			
		||||
  sourceRoot: 'src',
 | 
			
		||||
  outputRoot: 'dist',
 | 
			
		||||
  plugins: [],
 | 
			
		||||
  defineConstants: {
 | 
			
		||||
  },
 | 
			
		||||
  copy: {
 | 
			
		||||
    patterns: [
 | 
			
		||||
    ],
 | 
			
		||||
    options: {
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  framework: 'vue3',
 | 
			
		||||
  compiler: 'webpack5',
 | 
			
		||||
  cache: {
 | 
			
		||||
    enable: false // Webpack 持久化缓存配置,建议开启。默认配置请参考:https://docs.taro.zone/docs/config-detail#cache
 | 
			
		||||
  },
 | 
			
		||||
  mini: {
 | 
			
		||||
    postcss: {
 | 
			
		||||
      pxtransform: {
 | 
			
		||||
        enable: true,
 | 
			
		||||
        config: {
 | 
			
		||||
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      url: {
 | 
			
		||||
        enable: true,
 | 
			
		||||
        config: {
 | 
			
		||||
          limit: 1024 // 设定转换尺寸上限
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      cssModules: {
 | 
			
		||||
        enable: false, // 默认为 false,如需使用 css modules 功能,则设为 true
 | 
			
		||||
        config: {
 | 
			
		||||
          namingPattern: 'module', // 转换模式,取值为 global/module
 | 
			
		||||
          generateScopedName: '[name]__[local]___[hash:base64:5]'
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  h5: {
 | 
			
		||||
    publicPath: '/',
 | 
			
		||||
    staticDirectory: 'static',
 | 
			
		||||
    postcss: {
 | 
			
		||||
      autoprefixer: {
 | 
			
		||||
        enable: true,
 | 
			
		||||
        config: {
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      cssModules: {
 | 
			
		||||
        enable: false, // 默认为 false,如需使用 css modules 功能,则设为 true
 | 
			
		||||
        config: {
 | 
			
		||||
          namingPattern: 'module', // 转换模式,取值为 global/module
 | 
			
		||||
          generateScopedName: '[name]__[local]___[hash:base64:5]'
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  rn: {
 | 
			
		||||
    appName: 'taroDemo',
 | 
			
		||||
    postcss: {
 | 
			
		||||
      cssModules: {
 | 
			
		||||
        enable: false, // 默认为 false,如需使用 css modules 功能,则设为 true
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
module.exports = function (merge) {
 | 
			
		||||
  if (process.env.NODE_ENV === 'development') {
 | 
			
		||||
    return merge({}, config, require('./dev'))
 | 
			
		||||
  }
 | 
			
		||||
  return merge({}, config, require('./prod'))
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										37
									
								
								miniprogram-taro/config/prod.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										37
									
								
								miniprogram-taro/config/prod.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,37 @@
 | 
			
		||||
module.exports = {
 | 
			
		||||
  env: {
 | 
			
		||||
    NODE_ENV: '"production"'
 | 
			
		||||
  },
 | 
			
		||||
  defineConstants: {
 | 
			
		||||
  },
 | 
			
		||||
  mini: {},
 | 
			
		||||
  h5: {
 | 
			
		||||
    /**
 | 
			
		||||
     * WebpackChain 插件配置
 | 
			
		||||
     * @docs https://github.com/neutrinojs/webpack-chain
 | 
			
		||||
     */
 | 
			
		||||
    // webpackChain (chain) {
 | 
			
		||||
    //   /**
 | 
			
		||||
    //    * 如果 h5 端编译后体积过大,可以使用 webpack-bundle-analyzer 插件对打包体积进行分析。
 | 
			
		||||
    //    * @docs https://github.com/webpack-contrib/webpack-bundle-analyzer
 | 
			
		||||
    //    */
 | 
			
		||||
    //   chain.plugin('analyzer')
 | 
			
		||||
    //     .use(require('webpack-bundle-analyzer').BundleAnalyzerPlugin, [])
 | 
			
		||||
 | 
			
		||||
    //   /**
 | 
			
		||||
    //    * 如果 h5 端首屏加载时间过长,可以使用 prerender-spa-plugin 插件预加载首页。
 | 
			
		||||
    //    * @docs https://github.com/chrisvfritz/prerender-spa-plugin
 | 
			
		||||
    //    */
 | 
			
		||||
    //   const path = require('path')
 | 
			
		||||
    //   const Prerender = require('prerender-spa-plugin')
 | 
			
		||||
    //   const staticDir = path.join(__dirname, '..', 'dist')
 | 
			
		||||
    //   chain
 | 
			
		||||
    //     .plugin('prerender')
 | 
			
		||||
    //     .use(new Prerender({
 | 
			
		||||
    //       staticDir,
 | 
			
		||||
    //       routes: [ '/pages/index/index' ],
 | 
			
		||||
    //       postProcess: (context) => ({ ...context, outputPath: path.join(staticDir, 'index.html') })
 | 
			
		||||
    //     }))
 | 
			
		||||
    // }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										39406
									
								
								miniprogram-taro/package-lock.json
									
									
									
										generated
									
									
									
										Normal file
									
								
							
							
						
						
									
										39406
									
								
								miniprogram-taro/package-lock.json
									
									
									
										generated
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										72
									
								
								miniprogram-taro/package.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								miniprogram-taro/package.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,72 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "epp",
 | 
			
		||||
  "version": "1.0.0",
 | 
			
		||||
  "private": true,
 | 
			
		||||
  "description": "基于微服务的社区疫情防控系统",
 | 
			
		||||
  "templateInfo": {
 | 
			
		||||
    "name": "default",
 | 
			
		||||
    "typescript": false,
 | 
			
		||||
    "css": "none"
 | 
			
		||||
  },
 | 
			
		||||
  "scripts": {
 | 
			
		||||
    "build:weapp": "taro build --type weapp",
 | 
			
		||||
    "build:swan": "taro build --type swan",
 | 
			
		||||
    "build:alipay": "taro build --type alipay",
 | 
			
		||||
    "build:tt": "taro build --type tt",
 | 
			
		||||
    "build:h5": "taro build --type h5",
 | 
			
		||||
    "build:rn": "taro build --type rn",
 | 
			
		||||
    "build:qq": "taro build --type qq",
 | 
			
		||||
    "build:jd": "taro build --type jd",
 | 
			
		||||
    "build:quickapp": "taro build --type quickapp",
 | 
			
		||||
    "dev:weapp": "npm run build:weapp -- --watch",
 | 
			
		||||
    "dev:swan": "npm run build:swan -- --watch",
 | 
			
		||||
    "dev:alipay": "npm run build:alipay -- --watch",
 | 
			
		||||
    "dev:tt": "npm run build:tt -- --watch",
 | 
			
		||||
    "dev:h5": "npm run build:h5 -- --watch",
 | 
			
		||||
    "dev:rn": "npm run build:rn -- --watch",
 | 
			
		||||
    "dev:qq": "npm run build:qq -- --watch",
 | 
			
		||||
    "dev:jd": "npm run build:jd -- --watch",
 | 
			
		||||
    "dev:quickapp": "npm run build:quickapp -- --watch"
 | 
			
		||||
  },
 | 
			
		||||
  "browserslist": [
 | 
			
		||||
    "last 3 versions",
 | 
			
		||||
    "Android >= 4.1",
 | 
			
		||||
    "ios >= 8"
 | 
			
		||||
  ],
 | 
			
		||||
  "author": "",
 | 
			
		||||
  "dependencies": {
 | 
			
		||||
    "@babel/runtime": "^7.7.7",
 | 
			
		||||
    "@tarojs/components": "3.5.7",
 | 
			
		||||
    "@tarojs/helper": "3.5.7",
 | 
			
		||||
    "@tarojs/plugin-platform-weapp": "3.5.7",
 | 
			
		||||
    "@tarojs/plugin-platform-alipay": "3.5.7",
 | 
			
		||||
    "@tarojs/plugin-platform-tt": "3.5.7",
 | 
			
		||||
    "@tarojs/plugin-platform-swan": "3.5.7",
 | 
			
		||||
    "@tarojs/plugin-platform-jd": "3.5.7",
 | 
			
		||||
    "@tarojs/plugin-platform-qq": "3.5.7",
 | 
			
		||||
    "@tarojs/router": "3.5.7",
 | 
			
		||||
    "@tarojs/runtime": "3.5.7",
 | 
			
		||||
    "@tarojs/shared": "3.5.7",
 | 
			
		||||
    "@tarojs/taro": "3.5.7",
 | 
			
		||||
    "@tarojs/taro-h5": "3.5.7",
 | 
			
		||||
    "@tarojs/plugin-framework-vue3": "3.5.7",
 | 
			
		||||
    "vue": "^3.0.0"
 | 
			
		||||
  },
 | 
			
		||||
  "devDependencies": {
 | 
			
		||||
    "@babel/core": "^7.8.0",
 | 
			
		||||
    "@tarojs/cli": "3.5.7",
 | 
			
		||||
    "@types/webpack-env": "^1.13.6",
 | 
			
		||||
    "webpack": "5.69.0",
 | 
			
		||||
    "@tarojs/webpack5-runner": "3.5.7",
 | 
			
		||||
    "babel-preset-taro": "3.5.7",
 | 
			
		||||
    "css-loader": "3.4.2",
 | 
			
		||||
    "style-loader": "1.3.0",
 | 
			
		||||
    "@vue/babel-plugin-jsx": "^1.0.6",
 | 
			
		||||
    "@vue/compiler-sfc": "^3.0.0",
 | 
			
		||||
    "vue-loader": "^17.0.0",
 | 
			
		||||
    "eslint-plugin-vue": "^8.0.0",
 | 
			
		||||
    "eslint-config-taro": "3.5.7",
 | 
			
		||||
    "eslint": "^8.12.0",
 | 
			
		||||
    "stylelint": "^14.4.0"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										31
									
								
								miniprogram-taro/project.config.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								miniprogram-taro/project.config.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,31 @@
 | 
			
		||||
{
 | 
			
		||||
    "miniprogramRoot": "dist/",
 | 
			
		||||
    "projectname": "epp",
 | 
			
		||||
    "description": "基于微服务的社区疫情防控系统",
 | 
			
		||||
    "appid": "touristappid",
 | 
			
		||||
    "setting": {
 | 
			
		||||
        "urlCheck": true,
 | 
			
		||||
        "es6": false,
 | 
			
		||||
        "enhance": false,
 | 
			
		||||
        "compileHotReLoad": false,
 | 
			
		||||
        "postcss": false,
 | 
			
		||||
        "minified": false,
 | 
			
		||||
        "babelSetting": {
 | 
			
		||||
            "ignore": [],
 | 
			
		||||
            "disablePlugins": [],
 | 
			
		||||
            "outputPath": ""
 | 
			
		||||
        }
 | 
			
		||||
    },
 | 
			
		||||
    "compileType": "miniprogram",
 | 
			
		||||
    "libVersion": "2.27.1",
 | 
			
		||||
    "srcMiniprogramRoot": "dist/",
 | 
			
		||||
    "packOptions": {
 | 
			
		||||
        "ignore": [],
 | 
			
		||||
        "include": []
 | 
			
		||||
    },
 | 
			
		||||
    "condition": {},
 | 
			
		||||
    "editorSetting": {
 | 
			
		||||
        "tabIndent": "auto",
 | 
			
		||||
        "tabSize": 4
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										7
									
								
								miniprogram-taro/project.private.config.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								miniprogram-taro/project.private.config.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,7 @@
 | 
			
		||||
{
 | 
			
		||||
    "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html",
 | 
			
		||||
    "projectname": "epp",
 | 
			
		||||
    "setting": {
 | 
			
		||||
        "compileHotReLoad": true
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										9
									
								
								miniprogram-taro/project.tt.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								miniprogram-taro/project.tt.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,9 @@
 | 
			
		||||
{
 | 
			
		||||
  "miniprogramRoot": "./",
 | 
			
		||||
  "projectname": "epp",
 | 
			
		||||
  "appid": "testAppId",
 | 
			
		||||
  "setting": {
 | 
			
		||||
    "es6": false,
 | 
			
		||||
    "minified": false
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										11
									
								
								miniprogram-taro/src/app.config.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								miniprogram-taro/src/app.config.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,11 @@
 | 
			
		||||
export default defineAppConfig({
 | 
			
		||||
  pages: [
 | 
			
		||||
    'pages/index/index'
 | 
			
		||||
  ],
 | 
			
		||||
  window: {
 | 
			
		||||
    backgroundTextStyle: 'light',
 | 
			
		||||
    navigationBarBackgroundColor: '#fff',
 | 
			
		||||
    navigationBarTitleText: 'WeChat',
 | 
			
		||||
    navigationBarTextStyle: 'black'
 | 
			
		||||
  }
 | 
			
		||||
})
 | 
			
		||||
							
								
								
									
										0
									
								
								miniprogram-taro/src/app.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								miniprogram-taro/src/app.css
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										9
									
								
								miniprogram-taro/src/app.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								miniprogram-taro/src/app.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,9 @@
 | 
			
		||||
import { createApp } from 'vue'
 | 
			
		||||
import './app.css'
 | 
			
		||||
 | 
			
		||||
const App = createApp({
 | 
			
		||||
  onShow (options) {},
 | 
			
		||||
  // 入口组件不需要实现 render 方法,即使实现了也会被 taro 所覆盖
 | 
			
		||||
})
 | 
			
		||||
 | 
			
		||||
export default App
 | 
			
		||||
							
								
								
									
										17
									
								
								miniprogram-taro/src/index.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								miniprogram-taro/src/index.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,17 @@
 | 
			
		||||
<!DOCTYPE html>
 | 
			
		||||
<html>
 | 
			
		||||
<head>
 | 
			
		||||
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
 | 
			
		||||
  <meta content="width=device-width,initial-scale=1,user-scalable=no" name="viewport">
 | 
			
		||||
  <meta name="apple-mobile-web-app-capable" content="yes">
 | 
			
		||||
  <meta name="apple-touch-fullscreen" content="yes">
 | 
			
		||||
  <meta name="format-detection" content="telephone=no,address=no">
 | 
			
		||||
  <meta name="apple-mobile-web-app-status-bar-style" content="white">
 | 
			
		||||
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" >
 | 
			
		||||
  <title>epp</title>
 | 
			
		||||
  <script><%= htmlWebpackPlugin.options.script %></script>
 | 
			
		||||
</head>
 | 
			
		||||
<body>
 | 
			
		||||
  <div id="app"></div>
 | 
			
		||||
</body>
 | 
			
		||||
</html>
 | 
			
		||||
							
								
								
									
										3
									
								
								miniprogram-taro/src/pages/index/index.config.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								miniprogram-taro/src/pages/index/index.config.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,3 @@
 | 
			
		||||
export default definePageConfig({
 | 
			
		||||
  navigationBarTitleText: '首页'
 | 
			
		||||
})
 | 
			
		||||
							
								
								
									
										0
									
								
								miniprogram-taro/src/pages/index/index.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								miniprogram-taro/src/pages/index/index.css
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										19
									
								
								miniprogram-taro/src/pages/index/index.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								miniprogram-taro/src/pages/index/index.vue
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,19 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <view class="index">
 | 
			
		||||
    <text>{{ msg }}</text>
 | 
			
		||||
  </view>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import { ref } from 'vue'
 | 
			
		||||
import './index.css'
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  setup () {
 | 
			
		||||
    const msg = ref('Hello world')
 | 
			
		||||
    return {
 | 
			
		||||
      msg
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										22
									
								
								miniprogram-taro/types/global.d.ts
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								miniprogram-taro/types/global.d.ts
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,22 @@
 | 
			
		||||
/// <reference types="@tarojs/taro" />
 | 
			
		||||
 | 
			
		||||
declare module '*.png';
 | 
			
		||||
declare module '*.gif';
 | 
			
		||||
declare module '*.jpg';
 | 
			
		||||
declare module '*.jpeg';
 | 
			
		||||
declare module '*.svg';
 | 
			
		||||
declare module '*.css';
 | 
			
		||||
declare module '*.less';
 | 
			
		||||
declare module '*.scss';
 | 
			
		||||
declare module '*.sass';
 | 
			
		||||
declare module '*.styl';
 | 
			
		||||
 | 
			
		||||
declare namespace NodeJS {
 | 
			
		||||
  interface ProcessEnv {
 | 
			
		||||
    TARO_ENV: 'weapp' | 'swan' | 'alipay' | 'h5' | 'rn' | 'tt' | 'quickapp' | 'qq' | 'jd'
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
declare module '@tarojs/components' {
 | 
			
		||||
  export * from '@tarojs/components/types/index.vue3'
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user