afv-library/samples/ui-bundle-template-app-react-sample-b2e/force-app/main/default/uiBundles/propertymanagementapp/tsconfig.json
svc-idee-bot 9a0712528a
chore: sync React samples from npm (#280)
Co-authored-by: Hemant Singh Bisht <hsinghbisht@salesforce.com>
2026-06-03 12:43:28 +05:30

46 lines
1.1 KiB
JSON

{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
/* Path mapping */
"paths": {
"@/*": ["./src/*"],
"@api/*": ["./src/api/*"],
"@components/*": ["./src/components/*"],
"@utils/*": ["./src/utils/*"],
"@styles/*": ["./src/styles/*"],
"@assets/*": ["./src/assets/*"],
"@salesforce/platform-sdk": [
"../../../../../../../../../../packages/sdk/platform-sdk/src/index.ts"
]
}
},
"include": [
"src",
"e2e",
"vite-env.d.ts",
"vitest-env.d.ts",
"vitest.setup.ts",
"../../../../../../../../../../packages/sdk/platform-sdk/types"
],
"references": [{ "path": "./tsconfig.node.json" }]
}