tsconfig.json 788 B

12345678910111213141516171819202122232425
  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": "esnext",
  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"
  22. },
  23. "include": [ "src/**/*" ],
  24. // "exclude": [ "src/servers/**/*", "src/perf-tests/*", "src/cli/**/*" ]
  25. }