{ "extends": "@vue/tsconfig/tsconfig.web.json", "include": [ "src/env.d.ts", "vite/auto-import/*.d.ts", "src/**/*", "src/**/*.vue", "src/**/*.ts", ], "compilerOptions": { "target": "es5", //"ignoreDeprecations": "5.0", "downlevelIteration": true, "module": "esnext", "strict": true, "jsx": "preserve", "importHelpers": true, "moduleResolution": "node", "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "suppressImplicitAnyIndexErrors": true, "forceConsistentCasingInFileNames": true, "useDefineForClassFields": true, "noImplicitThis": false, // 允许this有隐式的any类型 "sourceMap": true, "baseUrl": "./", "paths": { "~/*": [ "./*" ], "@/*": [ "./src/*" ] }, "lib": [ "esnext", "dom", "dom.iterable", "scripthost" ] }, "exclude": [ "node_modules" ], "references": [ { "path": "./tsconfig.config.json" } ] }