Ghost/ghost/ghost/tsconfig.json
Fabien "egg" O'Carroll 0fb0c6c2b5 Added NestJS Playground
no-issue

This adds the barebones of a NestJS application wired up to the Admin API
behind a feature flag, so that we can experiement with how to use Nest in the
context of Ghost
2024-03-13 19:44:06 +07:00

12 lines
192 B
JSON

{
"extends": "../tsconfig.json",
"include": [
"src/**/*"
],
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"outDir": "build"
}
}