Skip to content
This repository has been archived by the owner on Aug 5, 2021. It is now read-only.

Commit

Permalink
Fix "Go To Definition" not working properly in VSCode
Browse files Browse the repository at this point in the history
  • Loading branch information
aeremin committed Jun 20, 2019
1 parent 59ed555 commit f450398
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
node_modules
npm-debug.log
*.js
*.js.map
*.map
*.d.ts
.env
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ api-docs/

# Transpiled JavaScript files from Typescript
*.js
*.js.map
*.map
*.d.ts

# Idea
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"**/.svn": true,
"**/CVS": true,
"**/*.js": true,
"**/*.js.map": true,
"**/*.map": true,
"**/*.d.ts": true
},
"files.insertFinalNewline": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/billing/.prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*.js
*.js.map
*.map
*.d.ts
*.json
2 changes: 1 addition & 1 deletion packages/interface/.prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*.js
*.js.map
*.map
*.d.ts
*.json
2 changes: 1 addition & 1 deletion packages/push/.prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*.js
*.js.map
*.map
*.d.ts
*.json
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"$schema": "http://json.schemastore.org/tsconfig",
"extends": "@loopback/build/config/tsconfig.common.json",
"compilerOptions": {
"composite": true
"composite": true,
"declarationMap": true
},
"references": [
{"path": "packages/interface/"},
Expand Down

0 comments on commit f450398

Please sign in to comment.