🐛 fix swcrc config: rewrite import -> require

This commit is contained in:
Flam3rboy
2021-10-07 09:59:04 +02:00
parent 72af8dc719
commit 95bb148cfa
9 changed files with 81 additions and 95 deletions
+11 -8
View File
@@ -1,9 +1,12 @@
{
"jsc": {
"parser": {
"syntax": "typescript",
"decorators": true
},
"target": "es2021"
}
}
"module": {
"type": "commonjs"
},
"jsc": {
"parser": {
"syntax": "typescript",
"decorators": true
},
"target": "es2021"
}
}
+1 -1
View File
@@ -10,7 +10,7 @@
"test": "npm run build && npm run test:only",
"test:watch": "jest --watch",
"start": "npm run build && node dist/start",
"build": "npx tsc -b .",
"build": "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",