12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "compilerOptions": {
- "composite": true,
- "skipLibCheck": true,
- "jsx": "react",
- "jsxFactory": "h",
- "jsxFragmentFactory": "Fragment",
- "module": "ESNext",
- "moduleResolution": "Node",
- "resolveJsonModule": true,
- "noImplicitThis": true,
- "allowSyntheticDefaultImports": true,
- "allowJs": true,
- "sourceMap": true,
- "baseUrl": ".",
- "types": ["@dcloudio/types", "vite/client"],
- "paths": {
- "@/*": ["./src/*"],
- "#/*": ["./types/*"],
- }
- },
- "include": [
- "src/**/*.json",
- "src/**/*.ts",
- "src/**/*.d.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "types/**/*.d.ts",
- "types/**/*.ts",
- "vite.config.ts",
- "types/components.d.ts",
- "package.json",
- "manifest.json",
- "build/**/*.ts"
- ],
- "exclude": ["node_modules", "tests/server/**/*.ts", "dist", "**/*.js"]
- }
|