mirror of
https://github.com/katanemo/plano.git
synced 2026-06-17 15:25:17 +02:00
This change brings Turborepo monorepo to independently handle the marketing website, the docs website and any other future use cases for mutli-platform support. They are using internal @katanemo package handlers for the design system and logic.
19 lines
373 B
JSON
19 lines
373 B
JSON
{
|
|
"extends": "@katanemo/tsconfig/nextjs.json",
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@katanemo/ui": ["../../packages/ui/src"]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts",
|
|
"**/*.mts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|