This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
feat(Root): Development mode using nodemon with custom type loading #354
Open
DerianCordobaPerez
wants to merge
293
commits into
microsoft:master
Choose a base branch
from
DerianCordobaPerez:feature-development-mode
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
feat(Root): Development mode using nodemon with custom type loading #354
DerianCordobaPerez
wants to merge
293
commits into
microsoft:master
from
DerianCordobaPerez:feature-development-mode
Conversation
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
fix: fix lint warnings for test files
this seems a bit crude but allows running the tests and having them take care of setting up the port to use
Added missing "node_modules/*" path mapping to README.
Removed extra "s" in sourceMap compilerOptions
Update README.md
feat(*): update several dependencies
Added missing "node_modules/*" path mapping to README.
this seems a bit crude but allows running the tests and having them take care of setting up the port to use
change tests to not always pass
The ts-node allows to execute build scripts written in TypeScript so the entire project could be written in TypeScript. This commit introduces support for ts-node, updates packages and migrate copy routine to TypeScript Thanks!
The VSCode CosmosDB supports locally installed MongoDB servers (and lot of other things and features). It seems reasonable to offer that extension to project users. Thanks!
made some changes to mongo connection
feat: move jest config to external file
add the line to compile dist folder
Add VSCode CosmosDB extension recommendation
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [handlebars](https://github.com/wycats/handlebars.js) from 4.3.4 to 4.7.6. - [Release notes](https://github.com/wycats/handlebars.js/releases) - [Changelog](https://github.com/handlebars-lang/handlebars.js/blob/master/release-notes.md) - [Commits](handlebars-lang/handlebars.js@v4.3.4...v4.7.6) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [tree-kill](https://github.com/pkrumins/node-tree-kill) from 1.2.1 to 1.2.2. - [Release notes](https://github.com/pkrumins/node-tree-kill/releases) - [Commits](pkrumins/node-tree-kill@v1.2.1...v1.2.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This version bump should fix issue with `node-sass` installation on some systems. Tested on Win 10. Thanks! Closes microsoft#165
Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7. - [Release notes](https://github.com/isaacs/ini/releases) - [Commits](npm/ini@v1.3.5...v1.3.7) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
) This removes warnings about deprecated configuration option: ```text tsConfig` is depecrated and will be removed in ts-jest 27 ``` kulshekhar/ts-jest@8fec681 Thanks!
Should fix issues with failing CI checks on updated packages. /cc @samal-rasmussen
This fixes issue with failing pages /cc @klemensz Fixes microsoft#323
This updates some deps to remove high security warnings from NPM audits. Thanks!
- deps update - package lock update - minor code changes to align with updated libraries /cc @daxeh Fixes microsoft#333
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…#350) Co-authored-by: Piotr Błażejewicz <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Hey, |
brittanydrandolph
force-pushed
the
master
branch
from
June 24, 2022 15:41
fbc1328
to
1e15e8b
Compare
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Implementation to run in development mode using nodemon loading custom types in order to prevent errors when running the server in development mode.
The error that is being prevented by loading the express-session-types type is the following:
Which is avoided by importing the following line into the app.ts file:
With this we achieve the execution in development mode with the command npm run dev.