-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #365 from nudibranchrecords/feature/globals-intell…
…isense Feature/globals intellisense
- Loading branch information
Showing
17 changed files
with
2,201 additions
and
484 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 |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
*.log | ||
node_modules | ||
dist | ||
config/dev.config.js | ||
config/dev.config.js | ||
static/globalVars |
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,24 @@ | ||
/* | ||
Include this file in the root of your project, along with jsconfig.json, | ||
to get VS Code intellisense hints on the packages that hedron exposes with the HEDRON global var. | ||
You will need to update the import path, please see the docs for details. | ||
Example import paths: | ||
Installed (Windows) | ||
C:/Users/alex/AppData/Local/Programs/Hedron/resources/static/globalVars | ||
Installed (OSX) | ||
/Applications/Hedron.app/Contents/Resources/static/globalVars | ||
From source | ||
/path/to/hedron/src/electron/renderer/globalVars | ||
*/ | ||
|
||
// This local path only works for example projects inside of the hedron folder | ||
import { dependencies } from '../src/electron/renderer/globalVars' | ||
|
||
export as namespace HEDRON; | ||
|
||
export { dependencies } |
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,4 @@ | ||
{ | ||
"compilerOptions": {}, | ||
"exclude": ["node_modules", "**/node_modules/*"] | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.