We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a051245 commit 826942bCopy full SHA for 826942b
.npmignore
@@ -0,0 +1,10 @@
1
+.devcontainer
2
+.vscode
3
+node_modules
4
+prisma
5
+src
6
+.env
7
+.prettierrc
8
+eslint.config.mjs
9
+jest.config.js
10
+tsconfig.json
package.json
@@ -6,6 +6,8 @@
"prisma-db-comments-generator": "./dist/generator.js"
},
"scripts": {
+ "build": "tsc",
+ "prepare": "npm run build",
11
"format": "prettier --write src/**",
12
"lint": "eslint src/**",
13
"test": "jest",
tsconfig.json
@@ -9,7 +9,8 @@
"skipLibCheck": true,
"declaration": true,
"sourceMap": true,
- "outDir": "./dist"
+ "outDir": "./dist",
+ "rootDir": "./src"
14
15
"include": ["src/**/*.ts"]
16
}
0 commit comments