12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "compilerOptions": {
- "baseUrl": ".",
- "target": "esnext",
- "module": "esnext",
- "moduleResolution": "node",
- "lib": [
- "esnext",
- "es6",
- "dom",
- "dom.iterable",
- "scripthost"
- ],
- "useDefineForClassFields": true,
- "strict": true,
- "jsx": "preserve",
- "sourceMap": false,
- "allowJs": true,
- "checkJs": true,
- "resolveJsonModule": true,
- "esModuleInterop": true,
- "noImplicitAny": false,
- "alwaysStrict": true,
- "skipLibCheck": true,
- "types": [
- "@dcloudio/types",
- "@types/lodash-es",
- "vite/client",
- "miniprogram-api-typings",
- "mini-types"
- ],
- "typeRoots": [
- "types",
- "node_modules/@types"
- ],
- "paths": {
- "@/*": [
- "src/*"
- ]
- }
- },
- "include": [
- "src/**/*.ts",
- "src/**/*.js",
- "src/**/*.d.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "types/**/*.d.ts",
- "src/**/*.d.ts"
- ],
- "exclude": [
- "node_modules",
- "test",
- "dist",
- ".history"
- ],
- "files": ["index.ts"]
- }
|