123456789101112131415161718192021 |
- {
- "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"
- },
- "include": ["src"],
- "exclude": ["**/__tests__", "**/__fixtures__", "node_modules"]
- }
|