Ensure tsconfig.json in all modules/*/app/src folders (#33060)

GitOrigin-RevId: 998d9c32bd11d77ee371e8bfd96fa201cf6950b2
This commit is contained in:
Alf Eaton
2026-04-30 11:55:30 +01:00
committed by Copybot
parent 664cc65ab0
commit 94018faafc
2 changed files with 8 additions and 0 deletions

View File

@@ -37,6 +37,13 @@ create_module_Makefiles: $(MODULE_MAKEFILES)
$(MODULE_MAKEFILES): Makefile.module
cp Makefile.module $@ || diff Makefile.module $@
MODULE_APP_SRC_DIRS := $(shell find modules -mindepth 3 -maxdepth 3 -type d -path '*/app/src')
MODULE_TSCONFIGS := $(MODULE_APP_SRC_DIRS:=/tsconfig.json)
create_module_tsconfigs: $(MODULE_TSCONFIGS)
$(MODULE_TSCONFIGS): tsconfig.module.json
cp tsconfig.module.json $@ || diff tsconfig.module.json $@
#
# Clean
#

View File

@@ -0,0 +1 @@
{ "extends": "../../../../tsconfig.backend.json" }