Initial Commit

This commit is contained in:
2025-07-13 17:33:30 +01:00
commit 68d056d367
7 changed files with 500 additions and 0 deletions

26
components/tsconfig.json Normal file
View File

@@ -0,0 +1,26 @@
{
"compilerOptions": {
"moduleResolution": "node",
"jsx": "react",
"baseUrl": ".",
"paths": {
"@/*": ["../.dist/types/*"],
"@definitions/*": ["../.dist/types/api/definitions/*"],
"@feature/*": ["../.dist/types/components/server/features/*"],
"@blueprint/*": ["../.dist/types/blueprint/*"]
},
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"noEmit": true,
"typeRoots": [
"../.dist/types"
]
},
"include": [
"./**/*"
],
"exclude": [
"node_modules"
]
}