tsconfig.json 297 B

12345678910111213
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "commonjs",
  5. "allowJs": false,
  6. "strict": true,
  7. "noImplicitAny": true,
  8. "moduleResolution": "node",
  9. "allowSyntheticDefaultImports": true,
  10. "esModuleInterop": true,
  11. "forceConsistentCasingInFileNames": true
  12. }
  13. }