123456789101112131415161718192021222324252627282930 |
- {
- "compilerOptions": {
- "target": "es2019",
- "allowJs": true,
- "esModuleInterop": true,
- "module": "commonjs",
- "moduleResolution": "node",
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "skipLibCheck": true,
- "skipDefaultLibCheck": true,
- "declaration": true,
- "sourceMap": false,
- "outDir": "./dist",
- "rootDir": "./src",
- "baseUrl": ".",
- "jsx": "react-jsx",
- "forceConsistentCasingInFileNames": true,
- "resolveJsonModule": true,
- "checkJs": false
- },
- "include": ["src/"],
- "exclude": [
- "**/__tests__",
- "**/__fixtures__",
- "node_modules",
- "build",
- ".cache"
- ]
- }
|