tsconfig.commonjs.json 721 B

123456789101112131415161718192021222324
  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. "moduleResolution": "node",
  15. "importHelpers": true,
  16. "noEmitHelpers": true,
  17. "allowSyntheticDefaultImports": true,
  18. "jsx": "react-jsx",
  19. "lib": [ "es6", "dom", "esnext.asynciterable", "es2016", "ES2022.Object" ],
  20. "rootDir": "src",
  21. "outDir": "lib/commonjs"
  22. },
  23. "include": [ "src/**/*" ]
  24. }