Skip to content

Commit

Permalink
Fix TypeScript references
Browse files Browse the repository at this point in the history
  • Loading branch information
awlayton committed Mar 11, 2021
1 parent bb7a186 commit afcf17f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions oada/.dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

# Built TS etc.
**/dist
**/*.tsbuildinfo

# yarn 2 stuff
.yarn/*
Expand Down
3 changes: 3 additions & 0 deletions oada/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# ts build stuff
dist/
*.tsbuildinfo
1 change: 1 addition & 0 deletions oada/libs/oada-pino-debug/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"composite": true,
"rootDir": "src",
"outDir": "dist"
},
Expand Down
3 changes: 2 additions & 1 deletion oada/services/http-handler/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
"rootDir": "src",
"outDir": "dist"
},
"include": ["src"]
"include": ["src"],
"references": [{ "path": "../../libs/oada-pino-debug" }]
}
3 changes: 2 additions & 1 deletion oada/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"noUnusedParameters": true,
"noImplicitThis": true,
"noImplicitAny": true,
"sourceMap": true
"sourceMap": true,
"declaration": true
}
}

0 comments on commit afcf17f

Please sign in to comment.