tsconfig.json 308 B

12345678910111213
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "module": "NodeNext",
  5. "moduleResolution": "NodeNext",
  6. "outDir": "./lib",
  7. "rootDir": "./src",
  8. "strict": true,
  9. "noImplicitAny": false,
  10. "esModuleInterop": true
  11. },
  12. "exclude": ["__test__", "lib", "node_modules", "jest.config.ts"]
  13. }