tsconfig.json 480 B

123456789101112131415161718
  1. {
  2. "compilerOptions": {
  3. "target": "ES2024",
  4. "module": "NodeNext",
  5. "moduleResolution": "NodeNext",
  6. "lib": ["ES2024"],
  7. "types": ["node"],
  8. "strict": true,
  9. "noEmit": true,
  10. "allowImportingTsExtensions": true,
  11. "erasableSyntaxOnly": true,
  12. "verbatimModuleSyntax": true,
  13. "noUncheckedIndexedAccess": true,
  14. "exactOptionalPropertyTypes": true
  15. },
  16. "include": ["src/**/*.ts", "test/**/*.ts"],
  17. "exclude": ["test/fixtures/non-erasable.ts"]
  18. }