Skip to content

Commit

Permalink
Fixed procedure
Browse files Browse the repository at this point in the history
  • Loading branch information
Elius94 committed May 23, 2022
1 parent 07c4def commit 0c1500d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
{
"name": "console-gui-tools",
"version": "1.1.21",
"version": "1.1.27",
"description": "A simple library to draw option menu, text popup or other widgets and layout on a Node.js console.",
"main": "dist/ConsoleGui.js",
"typings": "dist/ConsoleGui.d.ts",
"types": "dist/ConsoleGui.d.ts",
"type": "module",
"files": [
"dist/"
],
"scripts": {
"lint": "eslint ./src/ --ext .ts",
"build": "tsc",
Expand Down Expand Up @@ -47,4 +50,4 @@
"jsdoc-to-markdown": "^7.1.1",
"typescript": "^4.6.4"
}
}
}
12 changes: 7 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
{
"compilerOptions": {
"target": "esnext",
"lib": ["dom", "esnext"],
"module": "esnext",
"target": "es2020",
"lib": ["es2020", "esnext", "es2021", "es2022"],
"module": "es2022",
"declaration": true,
"outDir": "./dist",
// match output dir to input dir. e.g. dist/index instead of dist/src/index
//"rootDir": "./src",
"strict": true,
"allowJs": false,
"sourceMap": true,
"moduleResolution": "node",
"declarationMap": true,
"inlineSourceMap": true,
"inlineSources": true,
"moduleResolution": "Node",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
Expand Down

0 comments on commit 0c1500d

Please sign in to comment.