tsconfig.json 272 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ES2015",
  5. "lib": [
  6. "es2015",
  7. "es5",
  8. "es6",
  9. "dom"
  10. ],
  11. "rootDir": "src",
  12. "strict": true,
  13. "outDir": "gen",
  14. }
  15. }