Skip to content

Commit 5115ea6

Browse files
committed
chore(config): Reset package.json and tsconfig.json into 1.0.1
1 parent 4e2ffe8 commit 5115ea6

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"name": "commitlint-plugin-prevenger",
33
"version": "1.0.2",
44
"main": "dist/index.js",
5-
"type": "module",
65
"scripts": {
76
"test": "jest --coverage",
87
"build": "tsc"
@@ -44,4 +43,4 @@
4443
"ts-node": "^10.9.2",
4544
"typescript": "^5.8.3"
4645
}
47-
}
46+
}

tsconfig.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
{
22
"compilerOptions": {
3-
"target": "ES2020",
4-
"module": "node16",
5-
"declaration": true, // <-- THIS enables .d.ts files
6-
"declarationMap": false,
7-
"emitDeclarationOnly": false,
8-
"outDir": "dist", // <-- All compiled files go here
3+
"target": "ES2019",
4+
"module": "CommonJS",
5+
"outDir": "dist",
6+
"declaration": true,
97
"strict": true,
108
"esModuleInterop": true,
119
"skipLibCheck": true
12-
}
10+
},
11+
"include": ["src"]
1312
}

0 commit comments

Comments
 (0)