tvl-depot/users/Profpatsch/alacritty-change-color-scheme/tsconfig.json
Profpatsch 698bf7e19d 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
2024-12-13 19:45:58 +00:00

17 lines
304 B
JSON

{
"compilerOptions": {
"noEmit": true,
"target": "ES2022",
"lib": [
"ES2022"
],
"module": "ES2022",
"strict": true,
"checkJs": true,
"moduleResolution": "node"
},
"include": [
"*.ts",
"*.js"
],
}