initial commit
This commit is contained in:
18
apps/Frontend/tsconfig.json
Executable file
18
apps/Frontend/tsconfig.json
Executable file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"extends": "@repo/typescript-config/base.json",
|
||||
"compilerOptions": {
|
||||
"moduleResolution": "node",
|
||||
"module": "ESNext",
|
||||
"jsx": "preserve",
|
||||
|
||||
"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"]
|
||||
}
|
||||
Reference in New Issue
Block a user