forked from Hanabi-Live/hanabi-live
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.eslint.json
36 lines (31 loc) · 1.07 KB
/
tsconfig.eslint.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// A special TypeScript configuration file, used by ESLint only.
{
"$schema": "https://raw.githubusercontent.com/IsaacScript/isaacscript/main/packages/isaacscript-cli/schemas/tsconfig-strict-schema.json",
"extends": "./tsconfig.json",
// We want to lint every file in the repository, regardless of whether it is actually bundled into
// the TypeScript output. Two entries for each file extension are needed because TypeScript will
// exclude files that begin with a period from an asterisk glob by default.
"include": [
"./**/*.js",
"./**/.*.js",
"./**/*.cjs",
"./**/.*.cjs",
"./**/*.mjs",
"./**/.*.mjs",
"./**/*.jsx",
"./**/.*.jsx",
"./**/*.ts",
"./**/.*.ts",
"./**/*.cts",
"./**/.*.cts",
"./**/*.mts",
"./**/.*.mts",
"./**/*.tsx",
"./**/.*.tsx",
],
// @template-customization-start
// Needed to avoid spurious errors in VSCode when having scripts open (due to the
// "typescript.tsserver.experimental.enableProjectDiagnostics" setting).
"exclude": ["misc", "packages"],
// @template-customization-end
}