currently working on a node server with prisma and...
# orm-help
l
currently working on a node server with prisma and typescript, when building a package is throwing an error and I couldn’t find a way to fix it, any clue? heres my
tsconfig.json
file:
Copy code
{
  "compilerOptions": {
    "moduleResolution": "node",
    "noImplicitAny": false,
    "removeComments": true,
    "preserveConstEnums": true,
    "outDir": "./build",
    "sourceMap": true,
    "lib": ["es2016", "esnext.asynciterable", "dom"],
    "types": ["bcrypt", "body-parser", "cors", "express", "passport", "jsonwebtoken"]
  },
  "include": [
    "src/**/*"
  ],
  "exclude": [
    "node_modules",
    "node_modules/apollo-utilities",
    "build",
    "**/*.spec.ts",
  ]
}