-
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.
- Loading branch information
1 parent
9d3f36d
commit 42ff039
Showing
2 changed files
with
23 additions
and
0 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 |
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"] | ||
} |