Skip to content

Commit fc4e24d

Browse files
committed
chore: housekeeping
1 parent 066f85a commit fc4e24d

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MIT License
22

3-
Copyright (c) 2023 Open Web Foundation
3+
Copyright (c) 2024 Open Web Foundation
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ module.exports = {
55
rules: {
66
// @see: https://commitlint.js.org/#/reference-rules
77
'scope-enum': [
8-
2, 'always',
8+
2,
9+
'always',
910
scopes,
1011
],
1112
},
@@ -55,8 +56,8 @@ module.exports = {
5556
allowCustomIssuePrefixes: true,
5657
allowEmptyIssuePrefixes: true,
5758
confirmColorize: true,
58-
maxHeaderLength: Infinity,
59-
maxSubjectLength: Infinity,
59+
maxHeaderLength: Number.POSITIVE_INFINITY,
60+
maxSubjectLength: Number.POSITIVE_INFINITY,
6061
minSubjectLength: 0,
6162
scopeOverrides: undefined,
6263
defaultBody: '',
File renamed without changes.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bun-ts-starter",
3-
"version": "0.2.0",
43
"type": "module",
4+
"version": "0.2.0",
55
"description": "A simple TypeScript starter kit using Bun.",
66
"author": "Chris Breuer <chris@stacksjs.org>",
77
"license": "MIT",

tsconfig.json

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
11
{
22
"compilerOptions": {
33
"target": "esnext",
4-
"module": "esnext",
54
"lib": [
65
"esnext"
76
],
7+
"moduleDetection": "force",
8+
"module": "esnext",
89
"moduleResolution": "bundler",
9-
"noEmit": true,
10+
"resolveJsonModule": true,
11+
"types": [
12+
"node"
13+
],
1014
"allowImportingTsExtensions": true,
11-
"moduleDetection": "force",
12-
"esModuleInterop": true,
1315
"strict": true,
1416
"strictNullChecks": true,
15-
"resolveJsonModule": true,
17+
"noEmit": true,
18+
"esModuleInterop": true,
1619
"forceConsistentCasingInFileNames": true,
17-
"skipLibCheck": true,
1820
"skipDefaultLibCheck": true,
19-
"types": [
20-
"node",
21-
"bun-types"
22-
]
21+
"skipLibCheck": true
2322
}
2423
}

0 commit comments

Comments
 (0)