-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathtsc.project.lint.json
More file actions
27 lines (26 loc) · 723 Bytes
/
tsc.project.lint.json
File metadata and controls
27 lines (26 loc) · 723 Bytes
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
/**
** This file extends the project root tsconfig.json file for use with linting
** all files at the project level.
**
** Use this file to exert some control over which files will have their errors
** reported and which files will be ignored when linting an entire project
** repository at once.
*/
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "./tsconfig.json",
"include": ["**/*", "**/.*/**/*", "**/.*"],
"exclude": [
"**/dist/**/*",
"**/.next/**/*",
"**/.wrangler/**/*",
"**/test/fixtures/**/*",
"**/node_modules/**/*",
"**/*.ignore",
"**/*.ignore/**/*",
"**/ignore.*",
"**/ignore.*/**/*",
"**/*.ignore.*",
"**/*.ignore.*/**/*"
]
}