From 314fda165698cac51071c56a6d47a058d664af47 Mon Sep 17 00:00:00 2001 From: Chris Watson Date: Mon, 22 Nov 2021 18:30:30 -0700 Subject: [PATCH] Fix building --- src/config/logging.ts | 2 -- tsconfig.json | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/config/logging.ts b/src/config/logging.ts index c32082b..5a2e738 100644 --- a/src/config/logging.ts +++ b/src/config/logging.ts @@ -1,4 +1,3 @@ -import pkg from '../../package.json' import winston from 'winston' import { default as Sentry } from 'winston-transport-sentry-node' @@ -12,7 +11,6 @@ if (dsn) { dsn, tracesSampleRate: 1.0, environment: process.env.NODE_ENV, - release: pkg.version, }, level: 'info', }) diff --git a/tsconfig.json b/tsconfig.json index 4f4c0d6..f286b7e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,7 +13,7 @@ "target": "es2016", "lib": [ "es2021" ], "outDir": "dist", - "sourceRoot": "src", + "rootDir": "src", "sourceMap": true, "typeRoots": [ "node_modules/@types"