You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 498B

12345678910111213141516171819202122
  1. {
  2. "compilerOptions": {
  3. "outDir": "dist/",
  4. "noImplicitAny": true,
  5. "sourceMap": true,
  6. "jsx": "react",
  7. "allowJs": true,
  8. "moduleResolution": "node",
  9. "module": "es2022",
  10. "lib": [
  11. "es2022", "DOM", "DOM.Iterable"
  12. ],
  13. "target": "es2022",
  14. "preserveConstEnums": true,
  15. "esModuleInterop": true,
  16. "paths": {
  17. "client/*": [
  18. "../pkg/*"
  19. ]
  20. }
  21. }
  22. }