-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Switch from tsimp to swc * Fix dependencies * Fix depcheck * Fix some tests * Add swcrc to build stages of dockerfile * Updating version to 0.11.0 * Kind of fix dev * Updating version to 0.11.0 * Add missing dep * Readme updates * Updating version to 0.11.0 * Updating version to 0.11.0 --------- Co-authored-by: dc-autobot[bot] <181364585+dc-autobot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
0a617e8
commit f4e3b15
Showing
14 changed files
with
2,433 additions
and
336 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
{ | ||
"ignores": [ | ||
"@digicatapult/tsimp", | ||
"prettier-plugin-organize-imports" | ||
"@swc-node/register", | ||
"concurrently", | ||
"pino-colada", | ||
"prettier-plugin-organize-imports", | ||
"rimraf" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ config/local.json | |
|
||
node_modules/ | ||
build | ||
src/routes/swagger.json | ||
src/routes/routes.ts | ||
dist | ||
coverage | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"$schema": "https://swc.rs/schema.json", | ||
"jsc": { | ||
"parser": { | ||
"syntax": "typescript", | ||
"decorators": true, | ||
"topLevelAwait": true, | ||
"importMeta": true | ||
}, | ||
"transform": { | ||
"legacyDecorator": true, | ||
"decoratorMetadata": true, | ||
"useDefineForClassFields": true | ||
}, | ||
"minify": { | ||
"compress": { | ||
"unused": true | ||
}, | ||
"mangle": true | ||
}, | ||
"target": "esnext" | ||
}, | ||
"exclude": [ | ||
"/__tests__/" | ||
], | ||
"sourceMaps": true, | ||
"isModule": true, | ||
"minify": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.