| 1234567891011121314151617181920212223 |
- {
- "compilerOptions": {
- "target": "ES2022",
- "module": "ESNext",
- "moduleResolution": "bundler",
- "jsx": "react-jsx",
- "lib": ["ES2022", "DOM"],
- "strict": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true,
- "resolveJsonModule": true,
- "declaration": true,
- "composite": true,
- "sourceMap": true,
- "outDir": "dist",
- "rootDir": "src"
- },
- "include": ["src"],
- "references": [
- { "path": "../shared" }
- ]
- }
|