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 1fcf10a commit 8c099a6Copy full SHA for 8c099a6
services/question/package.json
@@ -3,7 +3,8 @@
3
"version": "0.0.0",
4
"main": "server.js",
5
"scripts": {
6
- "build": "npx tsc",
+ "clean": "rm -rf dist",
7
+ "build": "npm run clean && npx tsc --build src/tsconfig.json",
8
"start": "npm run build && node ./dist/server.js",
9
"dev": "nodemon --files ./src/server.ts",
10
"lint": "npx eslint .",
services/question/tsconfig.json
@@ -8,7 +8,11 @@
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
11
- "forceConsistentCasingInFileNames": true,
+ "forceConsistentCasingInFileNames": true,
12
+ "declaration": true,
13
+ "declarationMap": false,
14
+ "incremental": true,
15
+ "composite": true
16
},
17
"references": [
18
{ "path": "./src" },
0 commit comments