| { | |
| "compilerOptions": { | |
| "allowJs": true, | |
| "allowSyntheticDefaultImports": true, | |
| "declaration": true, | |
| "emitDecoratorMetadata": true, | |
| "esModuleInterop": true, | |
| "experimentalDecorators": true, | |
| "forceConsistentCasingInFileNames": true, | |
| "incremental": true, | |
| "jsx": "react-jsx", | |
| "lib": ["esnext"], | |
| "module": "NodeNext", | |
| "moduleResolution": "nodenext", | |
| "outDir": "./dist", | |
| "skipLibCheck": true, | |
| "sourceMap": true, | |
| "strict": true, | |
| "target": "ESNext" | |
| }, | |
| "exclude": [ | |
| "**/*.spec.ts", | |
| "**/*.test.ts", | |
| "scripts/**/*.ts", | |
| "dist/**/*.ts", | |
| "*.config.ts" | |
| ], | |
| "include": ["**/*.ts", "src/react/**/*.tsx"] | |
| } | |