Files
editor/apps/community/tsconfig.json
T
2026-03-11 12:16:26 +01:00

26 lines
441 B
JSON

{
"extends": "@repo/typescript-config/nextjs.json",
"compilerOptions": {
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"]
}
},
"include": [
"**/*.ts",
"**/*.tsx",
"next-env.d.ts",
"next.config.js",
".next/types/**/*.ts"
],
"exclude": ["node_modules"],
"references": [
{ "path": "../../packages/core" },
{ "path": "../../packages/viewer" }
]
}