Skip to content

NestJS doesn't start within apps #594

Closed Answered by NikhilCodes
NikhilCodes asked this question in Help
Discussion options

You must be logged in to vote

I got it to work by changing tsconfig.json in apps/api to

{
  "extends": "tsconfig/base.json",
  "include": [
    "./**/*.ts"
  ],
  "exclude": [
    "node_modules"
  ],
  "compilerOptions": {
    "module": "commonjs",
    "declaration": true,
    "removeComments": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "allowSyntheticDefaultImports": true,
    "target": "es2017",
    "sourceMap": true,
    "outDir": "./dist",
    "baseUrl": "./",
    "incremental": true
  }
}

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by NikhilCodes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet
1 participant