Restrucure consumer + monorepo

This commit is contained in:
Emily
2024-11-15 23:36:40 +01:00
parent 5ac43dec6b
commit 41037a01a1
25 changed files with 11658 additions and 1479 deletions

28
tsconfig.json Normal file
View File

@@ -0,0 +1,28 @@
{
"compilerOptions": {
"module": "NodeNext",
"target": "ESNext",
"moduleResolution": "nodenext",
"paths": {
"@schema/*": [
"./shared/schema/*"
],
"@services/*": [
"./shared/services/*"
],
"@data/*": [
"./shared/data/*"
],
"@functions/*": [
"./shared/functions/*"
],
"@utils/*": [
"./shared/utils/*"
]
},
"skipLibCheck": true
},
"exclude": [
"node_modules"
]
}