diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-07 18:21:17 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-07 18:21:17 +0200 |
commit | 1bef11aaaa23334df105b8e62cf919194a59dc43 (patch) | |
tree | 96ed878170cb5b52c532f9ed7d392551cce21a9f /api/package.json | |
parent | :zap: fast build script (diff) | |
download | server-1bef11aaaa23334df105b8e62cf919194a59dc43.tar.xz |
:bug: fix swc config
Diffstat (limited to 'api/package.json')
-rw-r--r-- | api/package.json | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/api/package.json b/api/package.json index 37721728..eb833417 100644 --- a/api/package.json +++ b/api/package.json @@ -2,15 +2,15 @@ "name": "@fosscord/api", "version": "1.0.0", "description": "This repository contains the HTTP API Server", - "main": "dist/Server.js", - "types": "dist/Server.d.ts", + "main": "dist/index.js", + "types": "src/index.ts", "scripts": { "test:only": "jest --coverage --verbose --forceExit ./tests", "test:routes": "jest --coverage --verbose --forceExit ./routes.test.ts", "test": "npm run build && npm run test:only", "test:watch": "jest --watch", "start": "npm run build && node dist/start", - "build": "npx tsc -b .", + "build": "npx swc src --out-dir dist", "build-docker": "tsc -p tsconfig-docker.json", "dev": "tsnd --respawn src/start.ts", "patch": "ts-patch install -s && npx patch-package", |