-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsc.package.lint.json
More file actions
25 lines (24 loc) · 688 Bytes
/
tsc.package.lint.json
File metadata and controls
25 lines (24 loc) · 688 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
/**
** This file extends the project root tsconfig.json file for use with linting
** all files at the package level. Only tsc gets its paths from this file.
**
** Use this file to exert some control over which files are considered
** part of the current package and which will be ignored.
*/
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "./tsconfig.json",
"include": ["**/*", "**/.*/**/*", "**/.*"],
"exclude": [
"**/dist/**/*",
"**/.next/**/*",
"**/.wrangler/**/*",
"**/test/fixtures/**/*",
"**/node_modules/**/*",
"packages/**/*",
"packages/**/.*",
"**/*.ignore",
"**/*.ignore.*/**/*",
"**/ignore.*"
]
}