We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e2ffe8 commit 5115ea6Copy full SHA for 5115ea6
2 files changed
package.json
@@ -2,7 +2,6 @@
2
"name": "commitlint-plugin-prevenger",
3
"version": "1.0.2",
4
"main": "dist/index.js",
5
- "type": "module",
6
"scripts": {
7
"test": "jest --coverage",
8
"build": "tsc"
@@ -44,4 +43,4 @@
44
43
"ts-node": "^10.9.2",
45
"typescript": "^5.8.3"
46
}
47
-}
+}
tsconfig.json
@@ -1,13 +1,12 @@
1
{
"compilerOptions": {
- "target": "ES2020",
- "module": "node16",
- "declaration": true, // <-- THIS enables .d.ts files
- "declarationMap": false,
- "emitDeclarationOnly": false,
- "outDir": "dist", // <-- All compiled files go here
+ "target": "ES2019",
+ "module": "CommonJS",
+ "outDir": "dist",
+ "declaration": true,
9
"strict": true,
10
"esModuleInterop": true,
11
"skipLibCheck": true
12
- }
+ },
+ "include": ["src"]
13
0 commit comments