tsconfig.json 740 B

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