1234567891011121314151617181920212223242526272829 |
- {
- "compilerOptions": {
- "target": "es5",
- "lib": ["dom", "dom.iterable", "esnext"],
- "allowJs": true,
- "skipLibCheck": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "strict": true,
- "forceConsistentCasingInFileNames": true,
- "module": "esnext",
- "moduleResolution": "node",
- "resolveJsonModule": true,
- "isolatedModules": false,
- "experimentalDecorators": true,
- "noEmit": true,
- "noImplicitThis": false,
- "jsx": "react",
- "baseUrl": "./src",
- "typeRoots": ["./types/*"],
- "suppressImplicitAnyIndexErrors": true,
- "paths": {
- "@/*": ["./*"]
- }
- },
- "include": ["src"],
- "exclude": ["node_modules", "build", "dist"]
- }
|