This commit is contained in:
Philip Peterson 2026-06-14 00:08:08 -07:00
parent 2d933926fb
commit 558863056e
2 changed files with 16 additions and 0 deletions

2
.gitignore vendored
View file

@ -5,3 +5,5 @@ web/sites/default/files/*
# Never commit real credentials
.env
node_modules/

14
jsconfig.json Normal file
View file

@ -0,0 +1,14 @@
{
"compilerOptions": {
"checkJs": true,
"paths": {
"https://esm.sh/preact@10": ["./node_modules/preact/src/index.d.ts"],
"https://esm.sh/preact@10/hooks": ["./node_modules/preact/hooks/src/index.d.ts"],
"https://esm.sh/htm@3/preact": ["./node_modules/htm/preact/index.d.ts"]
}
},
"include": [
"web/modules/custom/riverside_pt/js/**/*.js",
"web/modules/custom/riverside_pt/js/globals.d.ts"
]
}