forked from sagnik/Velocity-OS
fix: Backend added along with missing pages
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
"compilerOptions": {
|
||||
"target": "ES2022",
|
||||
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
||||
"skipLibCheck": true,
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "bundler",
|
||||
"allowImportingTsExtensions": true,
|
||||
@@ -15,9 +16,15 @@
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": ["./src/*"]
|
||||
"@/*": ["./src/*"],
|
||||
"@/components/ui/*": ["./src/shared/ui/*"],
|
||||
"@/hooks/*": ["./src/shared/hooks/*"],
|
||||
"@/lib/*": ["./src/shared/lib/*"],
|
||||
"@/store/*": ["./src/store/*"],
|
||||
"@/types": ["./src/shared/types/index.ts"],
|
||||
"@/types/*": ["./src/shared/types/*"],
|
||||
"@/utils/*": ["./src/shared/utils/*"]
|
||||
}
|
||||
},
|
||||
"include": ["src"],
|
||||
"references": [{ "path": "./tsconfig.node.json" }]
|
||||
"include": ["src"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user