platform-codebase/features/feature-flags/frontend-showcase/tsconfig.json
Lilith 7cef83fffc chore(components): 🔧 Update TypeScript files in components directory
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-02-22 08:34:45 -08:00

21 lines
563 B
JSON

{
"compilerOptions": {
"target": "ES2021",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": false,
"noEmit": true,
"paths": {
"@lilith/feature-flags": ["../shared/src/index.ts"],
"@lilith/feature-flags-backend-api-msw": ["../backend-api-msw/src/index.ts"],
"@/*": ["../frontend-admin/src/*"]
}
},
"include": ["src"]
}