2 files changed, 1 insertions, 12 deletions
diff --git a/api/jsconfig.json b/api/jsconfig.json
deleted file mode 100644
index 41c4cb9a..00000000
--- a/api/jsconfig.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "compilerOptions": {
- "baseUrl": ".",
- "paths": {
- "@util/*": ["./src/util/*"],
- "@middlewares/*": ["./src/middlewares/*"],
- "@schema/*": ["./src/schema/*"]
- }
- },
- "include": ["src"]
-}
diff --git a/api/package.json b/api/package.json
index c4a29774..eb833417 100644
--- a/api/package.json
+++ b/api/package.json
@@ -10,7 +10,7 @@
"test": "npm run build && npm run test:only",
"test:watch": "jest --watch",
"start": "npm run build && node dist/start",
- "build": "swc src --out-dir dist",
+ "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",
|