tsconfig.json 420 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "noEmit": true,
  4. "target": "esnext",
  5. "module": "commonjs",
  6. "lib": [
  7. "dom",
  8. "esnext"
  9. ],
  10. "noImplicitAny": true,
  11. "noImplicitThis": true,
  12. "strictNullChecks": true,
  13. "types": [],
  14. "noEmit": true,
  15. "esModuleInterop": true,
  16. "allowSyntheticDefaultImports": true,
  17. "strictFunctionTypes": true,
  18. "forceConsistentCasingInFileNames": true
  19. }
  20. }