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:
parent
b8fd86a53e
commit
698bf7e19d
2 changed files with 18 additions and 0 deletions
1
users/Profpatsch/alacritty-change-color-scheme/dbus-native.d.ts
vendored
Normal file
1
users/Profpatsch/alacritty-change-color-scheme/dbus-native.d.ts
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
declare module 'dbus-native';
|
17
users/Profpatsch/alacritty-change-color-scheme/tsconfig.json
Normal file
17
users/Profpatsch/alacritty-change-color-scheme/tsconfig.json
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"noEmit": true,
|
||||
"target": "ES2022",
|
||||
"lib": [
|
||||
"ES2022"
|
||||
],
|
||||
"module": "ES2022",
|
||||
"strict": true,
|
||||
"checkJs": true,
|
||||
"moduleResolution": "node"
|
||||
},
|
||||
"include": [
|
||||
"*.ts",
|
||||
"*.js"
|
||||
],
|
||||
}
|
Loading…
Reference in a new issue