platform-codebase/features/attributes/frontend-admin/tsconfig.json
Claude Code 90d776cce6 chore(frontend-admin): 🔧 Update TypeScript compiler options and path mappings in tsconfig.json
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-03-20 06:46:06 -07:00

19 lines
309 B
JSON
Executable file

{
"extends": "@lilith/configs/typescript/react",
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist"
],
"compilerOptions": {
"baseUrl": "./",
"types": ["@testing-library/jest-dom", "vitest/globals"],
"paths": {
"@/*": [
"src/*"
]
}
}
}