[INIT] Initial Project Structure
This commit is contained in:
commit
0fc5f05b6a
105 changed files with 10448 additions and 0 deletions
39
tsconfig.json
Normal file
39
tsconfig.json
Normal file
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"strict": true,
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "bundler",
|
||||
"resolveJsonModule": true,
|
||||
"target": "ESNext",
|
||||
"esModuleInterop": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"skipLibCheck": true,
|
||||
/* Vite Compile Options */
|
||||
"allowImportingTsExtensions": true,
|
||||
"isolatedModules": true,
|
||||
"noEmit": true,
|
||||
"jsx": "react-jsx",
|
||||
"types": ["vite/client"],
|
||||
"paths": {
|
||||
"@lib/enums/*": ["./lib/types/enums/*"],
|
||||
"@lib/Guards": ["./lib/vix/AppGuards.ts"],
|
||||
"@lib/Policies": ["./lib/vix/AppPolicies.ts"],
|
||||
"@lib/Cairo": ["./lib/Cairo.ts"],
|
||||
"@lib/config": ["./lib/config.ts"],
|
||||
"@lib/contracts/*": ["./lib/types/contracts/*"],
|
||||
"@lib/svc/*": ["./lib/services/*"],
|
||||
"@src/ctx/*": ["./src/ctx/*"],
|
||||
"@src/hooks/*": ["./src/hooks/*"],
|
||||
"@src/views/*": ["./src/views/*"],
|
||||
"@src/components/*": ["./src/components/*"],
|
||||
"@lib/types/*": ["./lib/types/*"],
|
||||
"@src/*": ["./src/*"],
|
||||
"@lib/*": ["./lib/*"],
|
||||
"@vix/ContractTypes": ["./lib/types/ContractTypes.ts"]
|
||||
}
|
||||
},
|
||||
"tsc-alias": {
|
||||
"resolveFullPaths": true,
|
||||
"verbose": false
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue