tsconfig.json 277 B

1234567891011121314
  1. {
  2. "compilerOptions": {
  3. "strict": true,
  4. "esModuleInterop": true,
  5. "downlevelIteration": true,
  6. "module": "esnext",
  7. "target": "ES2018",
  8. "moduleResolution": "node",
  9. "allowSyntheticDefaultImports": true,
  10. "rootDir": "src",
  11. "outDir": "dist"
  12. }
  13. }