tsconfig.json 328 B

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