tsconfig.json 234 B

123456789101112
  1. {
  2. "compilerOptions": {
  3. "target": "es2019",
  4. "module": "esnext",
  5. "moduleResolution": "bundler",
  6. "skipLibCheck": true,
  7. "strict": true,
  8. "noUnusedLocals": true,
  9. "noImplicitAny": true,
  10. "noEmit": true
  11. }
  12. }