chore: heygermany customer project
Some checks failed
Main / Setup and Test (push) Has been cancelled
Main / Build Website (push) Has been cancelled

This commit is contained in:
e2e
2026-07-11 09:28:50 +02:00
commit aae77ea31e
398 changed files with 38345 additions and 0 deletions

40
tsconfig.json Normal file
View File

@@ -0,0 +1,40 @@
{
"compilerOptions": {
"strict": true,
"jsx": "react",
"module": "node18",
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"noImplicitAny": false,
"noUnusedLocals": false,
"removeComments": true,
"noLib": false,
"noEmit": true,
"useUnknownInCatchVariables": false,
"target": "ES2021",
"sourceMap": true,
"allowJs": false,
"outDir": "dist",
"baseUrl": ".",
"paths": {
"@heygermany/components": ["./packages/components"],
"@heygermany/components/*": ["./packages/components/*"],
"@heygermany/functions": ["./packages/functions"],
"@heygermany/functions/*": ["./packages/functions/*"],
"@heygermany/mantine-theme": ["./packages/mantine-theme"],
"@heygermany/mantine-theme/*": ["./packages/mantine-theme/*"],
"@heygermany/sdk": ["./packages/sdk"],
"@heygermany/sdk/*": ["./packages/sdk/*"]
}
},
"references": [
{"path": "./packages/sdk"},
{"path": "./packages/mantine-theme"},
{"path": "./packages/components"}
],
"include": ["**/.pikku/*.ts", "**/types.ts"],
"exclude": ["node_modules", "**/*.spec.ts"]
}