Skip to content

Commit

Permalink
enh: Add a way to perform library
Browse files Browse the repository at this point in the history
  • Loading branch information
eythaann committed Oct 6, 2023
1 parent 6b71627 commit 6b06721
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

.vscode
/node_modules
tsconfig.tsbuildinfo
tsconfig.tsbuildinfo
outDir
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ commitlint.config.ts
# ts files
tsconfig.tsbuildinfo
tsconfig.json
outDir

# tests
*spec-types.ts
Expand Down
1 change: 0 additions & 1 deletion lib/modules/comparison/infrastructure.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { _RT } from '../..';
import { Prettify } from '../objects/infrastructure';
import { AND, If, IsAny, IsStrictObject, IsSubTypeBinary, IsSuperTypeBinary, OR, toBoolean } from './app';

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"main": "./lib/index.js",
"scripts": {
"build": "tsc",
"typeChecking": "tsc --incremental --noEmit",
"debugTypes": "tsc --generateTrace ./outDir",
"lint": "eslint \"./lib/**/*.{ts,tsx}\" --max-warnings 0",
"lint:fix": "eslint \"./lib/**/*.{ts,tsx}\" --max-warnings 0 --fix",
"prepare": "husky install",
Expand Down
4 changes: 4 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@
"strictFunctionTypes": true,
"noEmit": true,
"noErrorTruncation": true,
"incremental": true,
},
"include": [
"./lib",
],
"exclude": [
"node_modules"
]
}

0 comments on commit 6b06721

Please sign in to comment.