Nachhilfesystem24/api/tsconfig.json
2024-10-03 17:14:32 +02:00

27 lines
720 B
JSON

{
"compilerOptions": {
"noEmit": true,
"allowJs": true,
"esModuleInterop": true,
"target": "ES2023",
"module": "Node16",
"moduleResolution": "Node16",
"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"
]
}