Initial commit

This commit is contained in:
2024-10-03 17:14:32 +02:00
commit e6ec877864
50 changed files with 18515 additions and 0 deletions

29
scripts/tsconfig.json Normal file
View File

@ -0,0 +1,29 @@
{
"compilerOptions": {
"noEmit": true,
"allowJs": true,
"esModuleInterop": true,
"target": "ES2023",
"module": "Node16",
"moduleResolution": "Node16",
"paths": {
"$api/*": ["../api/*"],
"api/*": ["../api/*"],
"$api/src/*": ["../api/src/*", "../.redwood/types/mirror/api/src/*"],
"api/src/*": ["../api/src/*", "../.redwood/types/mirror/api/src/*"],
"$web/*": ["../web/*"],
"web/*": ["../web/*"],
"$web/src/*": ["../web/src/*", "../.redwood/types/mirror/web/src/*"],
"web/src/*": ["../web/src/*", "../.redwood/types/mirror/web/src/*"],
"types/*": ["../types/*", "../web/types/*", "../api/types/*"]
},
"typeRoots": ["../node_modules/@types"],
"jsx": "preserve"
},
"include": [
".",
"../.redwood/types/includes/all-*",
"../.redwood/types/includes/web-*",
"../types"
]
}