tsconfig.json 621 B

12345678910111213141516171819202122
  1. {
  2. "extends": "@tsconfig/node16/tsconfig.json",
  3. "exclude": ["node_modules", "dist", "examples", "**/*.test.ts", "src/test-utils.ts"],
  4. "compilerOptions": {
  5. // TODO: Remove "dom" from this when support for Node 16 is dropped
  6. "lib": ["es2021", "dom"],
  7. "outDir": "./dist",
  8. "rootDir": "./src",
  9. "sourceMap": true,
  10. "declaration": true,
  11. "declarationMap": true,
  12. "declarationDir": "./dist",
  13. "strict": true,
  14. "noImplicitAny": true,
  15. "esModuleInterop": true,
  16. "forceConsistentCasingInFileNames": true,
  17. "skipLibCheck": true,
  18. "stripInternal": true,
  19. "types": ["jest"]
  20. }
  21. }