Commit 64cd129
Update baseUrl and paths in tsconfig.json (#125)
With updates to start using `tsgo` we are seeing the following class of
errors:
```tsconfig.json:24:5 - error TS5102: Option 'baseUrl' has been removed. Please remove it from your configuration.
Use '"paths": {"*": "./*"}' instead.
24 "baseUrl": ".",
~~~~~~~~~
tsconfig.json:27:9 - error TS5090: Non-relative paths are not allowed. Did you forget a leading './'?
27 "src/*"
~~~~~~~
Found 2 errors in the same file, starting at: tsconfig.json:24```
https://www.typescriptlang.org/tsconfig/#baseUrl
> As of TypeScript 4.1, baseUrl is no longer required to be set when using paths.
---------
Co-authored-by: Jason R. Clark <jasonrclark@github.com>1 parent 3f60cd2 commit 64cd129
2 files changed
+2
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | | - | |
25 | 24 | | |
26 | 25 | | |
27 | | - | |
| 26 | + | |
28 | 27 | | |
29 | 28 | | |
30 | 29 | | |
| |||
0 commit comments