-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Root path suport #22
Comments
Given facebook/create-react-app#1065 this feature would be indeed awesome. |
i think specific path options are welcome but vscode uses jsconfig.json file for resolving modules like this: // jsconfig.json
{
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"paths": {
"~/*": "App/*",
"*": [
"Lib/*",
]
}
}
} microsoft/vscode#14907 (comment) it is better supporting default resolver. herewith we can peek or goto directly modules by clicking. ( also jsconfig.json schema: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/jsconfig.json ) |
I would suggest that For now ejected and use .babelrc:
This is fully compatible with Intellij Idea and as far as I can see does not interfere with other ways of defining absolute or relative paths. |
I would also like to have intellisense for typescript custom paths that are generated in the tsconfig.json like this:
Usage for example: |
utils
app
Workspace Settings
where
.
is path of Package.jsonThe text was updated successfully, but these errors were encountered: