//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"
],
}