-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(identity): infrastructure changes (#405)
* chore(www.js): rename www -> www.js for ts to transpile it * build(package): changed start commands and added a build script the start command is retrieved from: https://stackoverflow.com/questions/61342753/paths-from-tsconfig-json-doesnt-work-after-tsc this is required because ts doesn't destructure the path aliases into the actual imports. * build(tsocnfig): updated tsconfig to emit this won't affect npm run dev as we are using ts-node and it will transpile on the fly * ci(ci): add step to build * chore(gitignore): ignore build drivre * fix(tsconfig): remove swc :( swc transpiles experimental flags (metadata/decorators) wrongly; this results in sequelize-typescript being transpiled wrongly * chore(authmiddlewareservice): remove logging of cookies
- Loading branch information
Showing
8 changed files
with
131 additions
and
68 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
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,3 +1,4 @@ | ||
.env | ||
node_modules/ | ||
.vscode/ | ||
.vscode/ | ||
build/ |
File renamed without changes.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Main tsconfig for building, prevents tests from being compiled. | ||
{ | ||
"extends": "./tsconfig.json", | ||
"exclude": [ | ||
"tests/", | ||
"**/*.spec.ts", | ||
"**/*.test.ts", | ||
"**/__tests__/", | ||
"**/__mocks__/" | ||
] | ||
} |
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