123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "esnext",
- "strict": true,
- "jsx": "preserve",
- "importHelpers": true,
- "allowJs": true,
- "moduleResolution": "node",
- "skipLibCheck": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "sourceMap": true,
- "baseUrl": ".",
- "types": [
- "@vueuse/core"
- ],
- "paths": {
- "@/*": ["src/*"],
- "@pc/*": ["src/pc/*"],
- "@h5/*": ["src/h5/*"],
- },
- "lib": [
- "esnext",
- "dom",
- "dom.iterable",
- "scripthost"
- ]
- },
- "include": [
- "src/**/*.ts",
- "src/**/*.js",
- "src/**/*.tsx",
- "src/**/*.vue",
- "src/**/*.d.ts",
- "tests/**/*.ts",
- "tests/**/*.tsx"
- , "src/main.js" ],
- "exclude": [
- "node_modules"
- ],
- "vueCompilerOptions": {
- "target": 2.7
- }
- }
|