tsconfig.json 263 B

123456789101112
  1. {
  2. "extends": "@krypco/config/tsconfig.base.json",
  3. "compilerOptions": {
  4. "lib": ["ES2022", "DOM"],
  5. "noEmit": true,
  6. "strict": true,
  7. "module": "esnext",
  8. "moduleResolution": "bundler",
  9. "target": "ES2022"
  10. },
  11. "include": ["src/**/*.ts"]
  12. }