Files
openproject/frontend/tsconfig.app.json
Alexander Brandon Coles 8e25e2f5ba [#69325] Rework "Check all" with Stimulus
Resolves an issue when used inside collapsible section headers: clicking
"Check all"/"Uncheck all" should not toggle the collapsible section.

**Behavior**

Introduces `CheckableController` and `CheckAllController`, replacing
`GlobalHelpers` functions and `link_to_function` calls.

**Rendering**

Provides `OpenProject::Common::CheckAllComponent` to render a standard
UI and take care of connecting appropriate Stimulus controller/outlets,
actions.
2025-12-10 22:08:19 -03:00

28 lines
519 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/app",
"jsx": "react-jsx",
"types": []
},
"files": [
"src/main.ts",
"src/polyfills.ts",
"src/app/core/setup/init-globals.ts",
"src/app/core/setup/init-vendors.ts",
"src/stimulus/setup.ts",
"src/turbo/setup.ts"
],
"include": [
"src/stimulus/controllers/**/*.ts",
"src/**/*.d.ts"
],
"exclude": [
"src/stimulus/controllers/**/*.spec.ts"
],
"types": [
"node",
"react"
]
}