-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Run ts-toolkit init to standardise build process
- Loading branch information
1 parent
de46ee3
commit a2db7b9
Showing
22 changed files
with
1,701 additions
and
3,157 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 |
---|---|---|
@@ -1,7 +1,15 @@ | ||
# don't lint the linter config | ||
.eslintrc.js | ||
# don't ever lint node_modules | ||
node_modules | ||
# don't lint build output (make sure it's set to your correct build folder name) | ||
dist | ||
code-docs | ||
out | ||
**/.eslintrc.js | ||
commitlint.config.js | ||
jest.config.ts | ||
build | ||
# don't lint nyc coverage output | ||
coverage | ||
# don't lint generated types | ||
**/generated/types.d.ts | ||
**/generated/types.ts | ||
# don't lint ide files | ||
.idea | ||
.vscode |
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,7 @@ | ||
{ | ||
"root": true, | ||
"env": { | ||
"node": true | ||
}, | ||
"extends": ["@makerx/eslint-config"] | ||
} |
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,2 @@ | ||
{ | ||
"1092330": { | ||
"active": true, | ||
"notes": "The latest version of word-wrap was published 6 years ago", | ||
"expiry": "2023-11-01" | ||
} | ||
} | ||
} |
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,12 @@ | ||
# don't ever format node_modules | ||
node_modules | ||
# don't lint format output (make sure it's set to your correct build folder name) | ||
dist | ||
build | ||
# don't format nyc coverage output | ||
coverage | ||
# don't format generated types | ||
**/generated/types.d.ts | ||
**/generated/types.ts | ||
# don't format ide files | ||
.idea |
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,14 @@ | ||
import {TsToolkitConfig} from "./src"; | ||
|
||
const config: TsToolkitConfig = { | ||
packageConfig: { | ||
srcDir: 'src', | ||
outDir: 'dist', | ||
moduleType: 'module', | ||
main: 'index.ts', | ||
exports: { | ||
'.': 'index.ts' | ||
} | ||
} | ||
} | ||
export default config |
Oops, something went wrong.