Skip to content

Commit

Permalink
Merge pull request #4530 from camptocamp/fix-tcpath
Browse files Browse the repository at this point in the history
The paths should be in compilerOptions
  • Loading branch information
sbrunner committed Jan 17, 2019
2 parents a850fe6 + 26110d3 commit 0335ca1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"lib": ["es2017", "dom"],
"allowJs": true,
"checkJs": false,
"noEmit": true
},
"baseUrl": "./",
"paths": {
"ngeo/*": ["src/*"],
"gmf/*": ["contribs/gmf/src/*"]
"noEmit": true,
"baseUrl": "./",
"paths": {
"ngeo/*": ["src/*"],
"gmf/*": ["contribs/gmf/src/*"]
}
},
"include": [
"src/**/*.js",
Expand Down

0 comments on commit 0335ca1

Please sign in to comment.