T3, Intellisense, & Alias Path/Module

Using the latest T3 stack, I've been having issues getting Intellisense autocomplete to recognize any custom alias modules. It's not really an error, so no error message to give. Does anyone have any ideas? Screenshot for folder structure (src/app/_components/index for barrel importing)
//tsconfig.json
{"compilerOptions":{
...
/* Path Aliases */
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"],
"@/components/*": ["./src/app/_components/*"],
},
"include": [
".eslintrc.cjs",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.cjs",
"**/*.js",
".next/types/**/*.ts"
],
}
//tsconfig.json
{"compilerOptions":{
...
/* Path Aliases */
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"],
"@/components/*": ["./src/app/_components/*"],
},
"include": [
".eslintrc.cjs",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.cjs",
"**/*.js",
".next/types/**/*.ts"
],
}
1 Reply
Circus
Circus3mo ago
No description