20 lines
491 B
JSON
20 lines
491 B
JSON
{
|
|
"extends": "@repo/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"module": "ESNext",
|
|
"jsx": "preserve",
|
|
"typeRoots": ["node_modules/@types", "node_modules"],
|
|
|
|
"baseUrl": ".", // This tells TypeScript where to start resolving paths
|
|
"paths": {
|
|
"@/*": ["src/*"] // The @ alias will point to src folder inside the Frontend app
|
|
}
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|