cairo/tsconfig.json
Dunemask 0fc5f05b6a
Some checks failed
Deploy Edge / deploy-edge (push) Failing after 2s
S3 Repo Backup / s3-repo-backup (push) Failing after 2s
[INIT] Initial Project Structure
2024-08-24 12:41:04 -06:00

39 lines
1.2 KiB
JSON

{
"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
}
}