UNPKG

@megalo/cli

Version:
42 lines (41 loc) 949 B
{ "compilerOptions": { //Vue 的浏览器支持保持一致 "target": "es5", // 这可以对 `this` 上的数据属性进行更严格的推断 "strict": true, "sourceMap": true, "isolatedModules": true, // 如果使用 webpack 2+ 或 rollup,可以利用 tree-shake: "module": "esnext", "moduleResolution": "node", "baseUrl": "./", // "outDir": "./dist/", "paths": { "vue": [ "node_modules/megalo" ], "@/*": [ "src/*" ] }, "allowJs": true, "allowSyntheticDefaultImports": true, "noImplicitAny": false, "skipLibCheck": true, "strictPropertyInitialization": false, "experimentalDecorators": true, "esModuleInterop": true }, "types": ["miniprogram-api-typings", "@types/node"], "include": [ "./src/**/*", "types/**/*" ], "exclude": [ "node_modules" ], "typeAcquisition": { "enable": true } }