Directory tree:
.
├── package.json
├── src
│ ├── entrypoint.tsx
│ ├── index.html
│ └── ui
│ ├── App.tsx
│ └── shared
│ └── Reset.ts
├── start.sh
└── tsconfig.json
TypeScript's tsconfig.json
sets paths
to
Parcel's ~
module resolution convention
and baseUrl
to src
directory.
Parcel is given src/index.html
as its input,
which references src/entrypoint.tsx
.
All TypeScript files in src
may use the ~
non-relative import paths.
it should be
"~/*": ["./*"]
but not"~*": ["./*"]
if writing
"~*": ["./*"]
, vscode does not aware of this is a path and will not hint the right file