Skip to content

Commit

Permalink
chore: housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed Feb 22, 2024
1 parent 066f85a commit fc4e24d
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MIT License

Copyright (c) 2023 Open Web Foundation
Copyright (c) 2024 Open Web Foundation

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
7 changes: 4 additions & 3 deletions commitlint.config.js → commitlint.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ module.exports = {
rules: {
// @see: https://commitlint.js.org/#/reference-rules
'scope-enum': [
2, 'always',
2,
'always',
scopes,
],
},
Expand Down Expand Up @@ -55,8 +56,8 @@ module.exports = {
allowCustomIssuePrefixes: true,
allowEmptyIssuePrefixes: true,
confirmColorize: true,
maxHeaderLength: Infinity,
maxSubjectLength: Infinity,
maxHeaderLength: Number.POSITIVE_INFINITY,
maxSubjectLength: Number.POSITIVE_INFINITY,
minSubjectLength: 0,
scopeOverrides: undefined,
defaultBody: '',
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bun-ts-starter",
"version": "0.2.0",
"type": "module",
"version": "0.2.0",
"description": "A simple TypeScript starter kit using Bun.",
"author": "Chris Breuer <[email protected]>",
"license": "MIT",
Expand Down
19 changes: 9 additions & 10 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"lib": [
"esnext"
],
"moduleDetection": "force",
"module": "esnext",
"moduleResolution": "bundler",
"noEmit": true,
"resolveJsonModule": true,
"types": [
"node"
],
"allowImportingTsExtensions": true,
"moduleDetection": "force",
"esModuleInterop": true,
"strict": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"noEmit": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"types": [
"node",
"bun-types"
]
"skipLibCheck": true
}
}

0 comments on commit fc4e24d

Please sign in to comment.