summary refs log tree commit diff
path: root/bundle/tsconfig.json
diff options
context:
space:
mode:
authorChris Chrome <christophercookman@gmail.com>2021-12-26 13:38:25 -0500
committerGitHub <noreply@github.com>2021-12-26 13:38:25 -0500
commit565f3b9e5f067745dfb4339b621973c9c39bb690 (patch)
treeb601211fedf84401165b0e8626cf3fec1fc88db1 /bundle/tsconfig.json
parentFix the casing (diff)
parentAdd env name in sentry, set default sentry endpoint (diff)
downloadserver-ts-565f3b9e5f067745dfb4339b621973c9c39bb690.tar.xz
Merge pull request #553 from TheArcaneBrony/master
Remove fs-extras, add Sentry support, fix compile errors, fix some typos
Diffstat (limited to 'bundle/tsconfig.json')
-rw-r--r--bundle/tsconfig.json6
1 files changed, 4 insertions, 2 deletions
diff --git a/bundle/tsconfig.json b/bundle/tsconfig.json

index 58c61132..2257b4ab 100644 --- a/bundle/tsconfig.json +++ b/bundle/tsconfig.json
@@ -45,7 +45,7 @@ // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ /* Module Resolution Options */ - // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ + "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ // "typeRoots": [], /* List of folders to include type definitions from. */ "types": [ @@ -79,6 +79,8 @@ "@fosscord/cdn": ["cdn/src/index"], "@fosscord/util": ["util/src/index"] }, - "plugins": [{ "transform": "@zerollup/ts-transform-paths" }] + "plugins": [{ "transform": "@zerollup/ts-transform-paths" }], + "noEmitHelpers": true, + "importHelpers": true } }