generated from sapphiredev/sapphire-template
-
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.
feat: cleaner types, more correct types, the usual
- Loading branch information
1 parent
a50001c
commit c1b0f75
Showing
9 changed files
with
3,108 additions
and
2,940 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,9 @@ | ||
import sapphirePrettierConfig from '@sapphire/prettier-config'; | ||
|
||
/** @type {import('prettier').Config} */ | ||
export default { | ||
...sapphirePrettierConfig, | ||
trailingComma: 'all', | ||
printWidth: 120, | ||
experimentalTernaries: true, | ||
}; |
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
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
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 |
---|---|---|
|
@@ -24,7 +24,7 @@ | |
} | ||
}, | ||
"sideEffects": false, | ||
"author": "Vlad Frangu <[email protected]>", | ||
"author": "Vlad Frangu <[email protected]>", | ||
"license": "MIT", | ||
"scripts": { | ||
"lint": "eslint src tests --ext ts --fix", | ||
|
@@ -40,28 +40,28 @@ | |
"check-update": "cliff-jumper --dry-run" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^18.4.3", | ||
"@commitlint/config-conventional": "^18.4.3", | ||
"@commitlint/cli": "^19.3.0", | ||
"@commitlint/config-conventional": "^19.2.2", | ||
"@favware/cliff-jumper": "^2.2.3", | ||
"@favware/npm-deprecate": "^1.0.7", | ||
"@sapphire/eslint-config": "^5.0.2", | ||
"@sapphire/eslint-config": "^5.0.5", | ||
"@sapphire/prettier-config": "^2.0.0", | ||
"@sapphire/ts-config": "^5.0.0", | ||
"@typescript-eslint/eslint-plugin": "^6.13.1", | ||
"@typescript-eslint/parser": "^6.13.1", | ||
"@sapphire/ts-config": "^5.0.1", | ||
"@typescript-eslint/eslint-plugin": "^7.14.1", | ||
"@typescript-eslint/parser": "^7.14.1", | ||
"@vitest/coverage-c8": "^0.33.0", | ||
"@vitest/coverage-v8": "^0.34.6", | ||
"@vitest/coverage-v8": "^1.6.0", | ||
"cz-conventional-changelog": "^3.3.0", | ||
"eslint": "^8.55.0", | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.0.1", | ||
"lint-staged": "^15.1.0", | ||
"prettier": "^3.1.0", | ||
"tsup": "^8.0.1", | ||
"typedoc": "^0.25.4", | ||
"typedoc-plugin-mdn-links": "^3.1.6", | ||
"typescript": "^5.3.2", | ||
"vitest": "^0.34.6" | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"lint-staged": "^15.2.7", | ||
"prettier": "^3.3.2", | ||
"tsup": "^8.1.0", | ||
"typedoc": "^0.26.2", | ||
"typedoc-plugin-mdn-links": "^3.2.1", | ||
"typescript": "^5.5.2", | ||
"vitest": "^1.6.0" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -102,10 +102,9 @@ | |
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"prettier": "@sapphire/prettier-config", | ||
"resolutions": { | ||
"ansi-regex": "^5.0.1", | ||
"minimist": "^1.2.6" | ||
}, | ||
"packageManager": "[email protected]" | ||
"packageManager": "[email protected]", | ||
"volta": { | ||
"node": "20.15.0", | ||
"yarn": "4.3.1" | ||
} | ||
} |
Oops, something went wrong.