1234567891011121314151617181920212223242526272829303132333435 |
- {
- "compilerOptions": {
- "target": "es6",
- "lib": ["es6", "dom"],
- "allowSyntheticDefaultImports": true,
- "jsx": "preserve",
- "moduleResolution": "node",
- "allowJs": true,
- "noEmit": true,
- "strict": false,
- "paths": {
- "@/*": ["./src/*"],
- "@/components/*": ["./src/components/*"],
- "@/pages/*": ["./pages/*"],
- "@/static/*": ["./static/*"]
- },
- "types": [
- "node"
- ]
- },
- "vueCompilerOptions": {
- "experimentalRuntimeMode": "runtime-uni-app",
- "globalTypesPath": "./types/global.d.ts"
- },
- "include": [
- "**/*.js",
- "**/*.vue",
- "**/*.json"
- ],
- "exclude": [
- "node_modules",
- "unpackage",
- "dist"
- ]
- }
|