123456789101112131415161718 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "commonjs",
- "moduleResolution": "node",
- "strict": true,
- "forceConsistentCasingInFileNames": true,
- "jsx": "react",
- "baseUrl": ".",
- "esModuleInterop": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "experimentalDecorators": true,
- "lib": ["dom", "esnext"],
- "incremental": true,
- "skipLibCheck": true
- }
- }
|