forked from microsoft/pyright
-
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.
04a01c7 Merge pull request microsoft#510 from microsoft/erictr/debugging f6bb03b Fixed debug builds. Recent changes broke debugging (setting breakpoints, etc.). 2aa319f 3 fourslash improvement to support custom lib/typeshed folders (microsoft#514) 50b0d32 added a hook to ImportResolver for custom importing logic. (microsoft#515) de41104 Merge pull request microsoft#511 from microsoft/erictr/clean c57fafd Fixed ordering of build script — npm install needs to happen before clean because the latter depends on a node module. 46bb90c Added "clean" command to build script. Fixed bug in build script for debug version of server. f3a4aed Revert "Added "clean" build command that deletes artifacts from previous build actions." e22c661 Added "clean" build command that deletes artifacts from previous build actions. a5e3b37 Merge pull request microsoft#509 from heejaechang/fixRootDirectoryIssue bdcd372 previously added assert was using wrong path (__dirname rather than __dirname/..) b1e0ff8 made reportMissingTypeStub diagnostics warning by default and some refactoring around code actions. (microsoft#507) git-subtree-dir: server/pyright git-subtree-split: 04a01c7
- Loading branch information
1 parent
79a3eef
commit 42a94f9
Showing
9 changed files
with
53 additions
and
41 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
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 @@ | ||
/* | ||
* pathConsts.ts | ||
* Copyright (c) Microsoft Corporation. | ||
* Licensed under the MIT license. | ||
* | ||
* Defines path-related constants. | ||
*/ | ||
|
||
export const typeshedFallback = 'typeshed-fallback'; | ||
export const lib = 'lib'; | ||
export const sitePackages = 'site-packages'; |
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
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