tsconfig.json 592 B

123456789101112131415161718192021222324
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "target": "es2017",
  5. "lib": [
  6. "ScriptHost",
  7. "DOM",
  8. "ES2015",
  9. "ES2016",
  10. "ES2017",
  11. "ES2018",
  12. "ES2019",
  13. "ES2020",
  14. "ES2021",
  15. "ESNext"
  16. ],
  17. "types": ["jest", "node", "@types/jest", "@types/offscreencanvas"],
  18. "sourceMap": true,
  19. "typeRoots" : ["./src/define"],
  20. "downlevelIteration": true,
  21. "esModuleInterop": true,
  22. "experimentalDecorators": true
  23. }
  24. }