tsconfig.json 299 B

12345678910111213
  1. {
  2. "extends": "../tsconfig.base.json",
  3. "compilerOptions": {
  4. "outDir": "./dist",
  5. "rootDir": "./src",
  6. "lib": ["ES2022"],
  7. "types": ["node"],
  8. "emitDecoratorMetadata": true,
  9. "experimentalDecorators": true
  10. },
  11. "include": ["src/**/*"],
  12. "exclude": ["node_modules", "dist"]
  13. }