-
Notifications
You must be signed in to change notification settings - Fork 1
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 #21 from permaficus/dev-branch
Dev branch
- Loading branch information
Showing
4 changed files
with
26 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
node_modules | ||
pub | ||
vupd.js | ||
.npmignore |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"compilerOptions": { | ||
/* Language and Environment */ | ||
"target": "ES2015", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ | ||
/* Modules */ | ||
"module": "CommonJS", /* Specify what module code is generated. */ | ||
"rootDir": "./", /* Specify the root folder within your source files. */ | ||
/* JavaScript Support */ | ||
/*"allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */ | ||
"outDir": "pub", /* Specify an output folder for all emitted files. */ | ||
"esModuleInterop": true, | ||
"noEmit": false, | ||
"moduleResolution": "Node10", | ||
"declaration": true, | ||
"declarationMap": true, | ||
"resolveJsonModule": true | ||
}, | ||
"exclude": ["node_modules", "pub", " tsconfig.json", "enmav.config.ts", "vupd.js"] | ||
} |