Files
Eric Schubert f02c1dde58 [chore] add tsconfig to wikis module
- needed to tell IDEs to lookup the lookup paths
- doesn't affect build, as the `tsconfig.json` in the module directory
  should be ignored by esbuild of the core app.
2026-03-30 14:30:08 +02:00

14 lines
260 B
JSON

{
"extends": "../../../frontend/tsconfig.json",
"compilerOptions": {
"baseUrl": "../../../frontend",
"typeRoots": [
"../../../frontend/node_modules/@types",
"../../../frontend/node_modules"
]
},
"include": [
"**/*.ts"
]
}