You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 19, 2022. It is now read-only.
{
"extends": "mybase.tsconfig.json" , // Not actual filename"compilerOptions": {
"baseUrl": "./",
"paths": {
// I actually had a comment in the file there, because I desire a different path, eventually...// and TypeScript supports comments in tsconfig files (JSONC, or JSON with Comments)// but Craco-Alias does not :'("@myscope/*": "./packages/myscope/*"
}
}
}
But as you can see from the comment in the file above, Craco-Alias does not support Json with Comments, even though that's technically what tsconfig files are. (As you can see when you do tsc --init—you get a file full of comments with a very basic configuration, and tsc happily consumes it.)