Skip to content

Commit

Permalink
feat: add build configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianScheidt committed Aug 5, 2024
1 parent 6a7d2df commit 3ad1fa0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"scripts": {
"start": "ts-node --transpile-only src/main.ts",
"format": "prettier --write .",
"lint": "eslint ."
"lint": "eslint .",
"build": "tsc"
},
"dependencies": {
"@fabianscheidt/did-web-verification-method-server": "1.4.0",
Expand Down
7 changes: 4 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"rootDir": "./",
"outDir": "./build",
"rootDir": "./src",
"outDir": "./dist",
"allowSyntheticDefaultImports": true,
"strict": true
}
},
"include": ["src/**/*"]
}

0 comments on commit 3ad1fa0

Please sign in to comment.