Skip to content

Commit

Permalink
Merge pull request #21 from permaficus/dev-branch
Browse files Browse the repository at this point in the history
Dev branch
  • Loading branch information
permaficus authored Jun 12, 2024
2 parents f1489eb + 42ff039 commit bc09595
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
pub
vupd.js
.npmignore
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"name": "enmav",
"version": "0.7.1",
"version": "0.7.10",
"main": "pub/src/index.js",
"scripts": {
"build": "rm -rf && tsc",
"build:tsc": "rm -rf pub && node vupd.js && tsc"
},
"bin": {
Expand Down
19 changes: 19 additions & 0 deletions tsconfig.json
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"]
}

0 comments on commit bc09595

Please sign in to comment.