Files
portfolio/api/tsconfig.json
Ahmed Al-Taiar d13b16c032
All checks were successful
Publish Development Docker Image / Publish Development Docker Image (push) Successful in 1m34s
Update TUS backend
2025-04-07 16:54:17 -04:00

36 lines
784 B
JSON
Executable File

{
"compilerOptions": {
"noEmit": true,
"allowJs": true,
"esModuleInterop": true,
"target": "ES2023",
"module": "NodeNext",
"moduleResolution": "nodenext",
"skipLibCheck": false,
"rootDirs": [
"./src",
"../.redwood/types/mirror/api/src"
],
"paths": {
"src/*": [
"./src/*",
"../.redwood/types/mirror/api/src/*"
],
"types/*": ["./types/*", "../types/*"],
"@redwoodjs/testing": ["../node_modules/@redwoodjs/testing/api"]
},
"typeRoots": [
"../node_modules/@types",
"./node_modules/@types"
],
"types": ["jest"],
"jsx": "react-jsx"
},
"include": [
"src",
"../.redwood/types/includes/all-*",
"../.redwood/types/includes/api-*",
"../types"
]
}