feat(users/Profpatsch/alacritty): add tsconfig for jsdoc checks

These `tsconfig` will apply to JS files with jsdoc comments. Sweet!

Change-Id: I1a623d0ec7e2d73e99d7c6aaf8162d96f4ff2b29
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12889
Reviewed-by: Profpatsch <mail@profpatsch.de>
Tested-by: BuildkiteCI
This commit is contained in:
Profpatsch 2024-12-13 20:02:38 +01:00
parent b8fd86a53e
commit 698bf7e19d
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1 @@
declare module 'dbus-native';

View file

@ -0,0 +1,17 @@
{
"compilerOptions": {
"noEmit": true,
"target": "ES2022",
"lib": [
"ES2022"
],
"module": "ES2022",
"strict": true,
"checkJs": true,
"moduleResolution": "node"
},
"include": [
"*.ts",
"*.js"
],
}