tsconfig.renderer.json 692 B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "declaration": true,
  4. "target": "es5",
  5. "alwaysStrict": true,
  6. "noImplicitAny": true,
  7. "noImplicitThis": true,
  8. "sourceMap": false,
  9. "noUnusedLocals": true,
  10. "strictNullChecks": true,
  11. "strictFunctionTypes": true,
  12. "module": "CommonJS",
  13. "esModuleInterop": true,
  14. "skipLibCheck": true,
  15. "moduleResolution": "node",
  16. "importHelpers": true,
  17. "noEmitHelpers": true,
  18. "allowSyntheticDefaultImports": true,
  19. "jsx": "react",
  20. "lib": [ "dom", "esnext.asynciterable", "es2022" ],
  21. "rootDir": "src",
  22. "outDir": "./lib/commonjs"
  23. },
  24. "include": [ "src/TmImageRenderer/*" ],
  25. "exclude": [
  26. "node_modules"
  27. ]
  28. }