| 12345678910111213141516171819202122232425262728 |
- {
- "compilerOptions": {
- "lib": ["ESNext"],
- "baseUrl": ".",
- "paths": {
- "assets/*": ["src/assets/*"],
- "components/*": ["src/components/*"],
- "legacy/*": ["src/legacy/*"],
- "lib/*": ["src/lib/*"],
- "main/*": ["src/main/*"],
- "utils/*": ["src/utils/*"],
- "shared/*": ["src/shared/*"]
- },
- "outDir": "./build/",
- "sourceMap": true,
- "noImplicitAny": true,
- "module": "ESNext",
- "target": "ESNext",
- "jsx": "react-jsx",
- "allowJs": true,
- "allowSyntheticDefaultImports": true,
- "removeComments": true,
- "moduleResolution": "Bundler",
- "strict": true,
- "skipLibCheck": true
- },
- "exclude": ["node_modules", "build", "jest.config.js"]
- }
|