Files
alert/tsconfig.json
Jhonton Chen dfcba94cf5 feat(platform): add platform access control with quota management
- Add userPlatform hook to derive available platforms from company config
- Add platform access section in company popup with MT4/MT5 switch and quota limits
- Add platform access column in company list showing quota usage
- Replace hardcoded platform options with dynamic userPlatform in account/alert/data-source pages
- Add getPlatformList API and extend CompanyListItem typings
- Add i18n translations for platform access related keys
- Update dev proxy target port to 8082

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-12 17:57:25 +08:00

34 lines
690 B
JSON

{
"compilerOptions": {
"ignoreDeprecations": "6.0",
"baseUrl": "./",
"target": "esnext",
"moduleResolution": "node",
"jsx": "react-jsx",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"declaration": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"paths": {
"@/*": [
"./src/*"
],
"@@/*": [
"./src/.umi/*"
],
"@@test/*": [
"./src/.umi-test/*"
]
}
},
"include": [
"./**/*.d.ts",
"./**/*.ts",
"./**/*.tsx"
]
}