12345678910111213141516171819202122232425262728293031323334353637 |
- {
- // "extends": "@vue/tsconfig/tsconfig.web.json",
- // "include": ["env.d.ts", "src/**/*", "src/**/*.vue", "../common/src/stores/user", "../common/src/stores/user"],
- "include": [
- "src/**/*.ts",
- "src/**/*.d.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "src/untils/baiduMap.js",
- "src/untils/debuonce.js",
- "**/*.ts",
- "**/*.tsx"
- ],
- "compilerOptions": {
- "ignoreDeprecations": "5.0",
- "target": "esnext",
- "module": "ESNext",
- "strict": false,
- "jsx": "preserve",
- "moduleResolution": "Node",
- "baseUrl": "./",
- "paths": {
- "@/*": ["./src/*"]
- },
- "isolatedModules": false,
- "sourceMap": true,
- "resolveJsonModule": true,
- "esModuleInterop": true,
- "lib": ["es5", "es6", "dom", "dom.iterable"],
- "allowSyntheticDefaultImports": true
- },
- "references": [
- {
- "path": "./tsconfig.node.json"
- }
- ]
- }
|