tsconfig.json 259 B

123456789101112
  1. {
  2. "compilerOptions": {
  3. "target": "es2020",
  4. "module": "ES2020",
  5. "esModuleInterop": true,
  6. "forceConsistentCasingInFileNames": true,
  7. "moduleResolution": "node",
  8. "strict": true,
  9. "skipLibCheck": true
  10. },
  11. "include": ["src/**/*"],
  12. }