Closed
Description
TS template added by @mjbvz
Confirmed TypeScript version: 3.8.0-dev-20191116
Search terms:
- debug failure
- crash
- VSCode Version: 1.40.1
- OS Version: macOS Mojave 10.14.6
While working on my TypeScript project I wanted to define something in baseUrl
and paths
fields of compilerOptions
in tsconfig.json
to avoid ../../../
hell. I did it for the first time so I did not do it correctly. Here's what I added:
"baseUrl": "./src",
"paths": {
"@interface/**/*" : ["./src/interface/*"],
"@service/**/*": ["./src/service/**/*"],
"@controller/**/*": ["./src/controller/**/*"],
},
after I did that, the built-in TypeScript language service crashed and did not want to start under no circumstances. It only started working again when I removed the new code from tsconfig.json
Steps to Reproduce:
- Clone the drzamich/odjazdowo3.0@b4c97fb
- Open the cloned project in VSCode and watch the TypeScript language service crash
Does this issue occur when all extensions are disabled?: Yes