forked from typescript-eslint/typescript-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
41 lines (41 loc) · 1.1 KB
/
tsconfig.base.json
File metadata and controls
41 lines (41 loc) · 1.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
34
35
36
37
38
39
40
41
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"composite": true,
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"emitDecoratorMetadata": false,
"esModuleInterop": true,
"experimentalDecorators": false,
"forceConsistentCasingInFileNames": true,
"importHelpers": false,
"incremental": true,
"isolatedModules": true,
"lib": ["ES2022"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noEmitOnError": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"pretty": true,
"removeComments": false,
"resolveJsonModule": true,
"rootDir": "${configDir}/",
"skipDefaultLibCheck": false,
"skipLibCheck": true,
"sourceMap": false,
"strict": true,
"target": "ES2022",
"types": ["vitest/globals", "vitest/importMeta"],
"verbatimModuleSyntax": false
},
"include": [
"${configDir}/vitest.config.mts",
"${configDir}/package.json",
"${configDir}/tests",
"${configDir}/typings"
],
"exclude": ["${configDir}/**/fixtures/**"]
}