tsconfig.json 257 B

123456789101112
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "module": "ES2022",
  5. "moduleResolution": "bundler",
  6. "esModuleInterop": true,
  7. "forceConsistentCasingInFileNames": true,
  8. "strict": true,
  9. "skipLibCheck": true,
  10. "jsx": "preserve"
  11. }
  12. }