/
githubmirror
/
ui
Обзор
Документация
Войти
/
githubmirror
/
ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
apps/v4/tsconfig.json
44 строки
1 KB
shadcn
refactor(create): consolidate create code into a single route group (#11102)
07 июл 2026, 14:59
Не верифицирован
07 июл 2026, 14:59
68e1f17
Код
Авторство
О чём код?
{ "compilerOptions": { "target": "ES2017", "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, "strict": true, "noEmit": true, "esModuleInterop": true, "module": "esnext", "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, "jsx": "react-jsx", "incremental": true, "plugins": [ { "name": "next" } ], "baseUrl": ".", "paths": { // Temp aliases: registry sources import @/app/(create)/* (ships // verbatim in published registry payloads) and a handful still use // the legacy @/app/(app)/create/* path. The files actually live under // app/(app)/(create)/*. Remove once the registry imports (and // payloads) are migrated to the real path. "@/app/(create)/*": ["./app/(app)/(create)/*"], "@/app/(app)/create/*": ["./app/(app)/(create)/*"], "@/*": ["./*"], "react": ["./node_modules/@types/react"] } }, "include": [ "next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "scripts/build-registry.mts", "next.config.mjs", ".next/dev/types/**/*.ts" ], "exclude": ["node_modules"] }