-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 1 KB
/
Copy pathtsconfig.json
File metadata and controls
33 lines (33 loc) · 1 KB
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
{
"compilerOptions": {
"strict": true,
"noUncheckedIndexedAccess": true,
"target": "ES2024",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2024"],
"types": ["node"],
"noEmit": true,
// eslint.config.ts imports eslint.shared.ts by its real path, extension included, which is what ESLint's own TypeScript config loader resolves. TypeScript rejects a .ts specifier without this, and permits it here because noEmit is set.
"allowImportingTsExtensions": true,
"skipLibCheck": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true
},
"include": [
"eslint.config.ts",
"eslint.shared.ts",
"prettier.config.ts",
"stryker.shared.ts",
"tsdown.sea.shared.ts",
"knip.config.ts",
"vitest.root.config.ts",
"release-workspace.config.test.ts",
".github/scripts",
"commitlint.config.ts",
"lint-staged.config.ts",
"syncpack.config.ts"
]
}