| 1234567891011121314151617181920212223242526272829 |
- {
- "compilerOptions": {
- "target": "ES5",
- "module": "ESNext",
- "lib": ["ES2020", "DOM"],
- "moduleResolution": "bundler",
- "strict": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true,
- "declaration": true,
- "declarationMap": true,
- "sourceMap": true,
- "outDir": "./dist",
- "rootDir": ".",
- "jsx": "react-jsx",
- "resolveJsonModule": true,
- "allowSyntheticDefaultImports": true,
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "types": ["react", "node"],
- "baseUrl": ".",
- "paths": {
- "@/*": ["src/*"]
- }
- },
- "include": ["src/**/*", "tests"],
- "exclude": ["node_modules", "dist"]
- }
|