-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.json
More file actions
48 lines (48 loc) · 992 Bytes
/
tsconfig.json
File metadata and controls
48 lines (48 loc) · 992 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"declaration": false,
"experimentalDecorators": true,
"lib": [
"dom",
"es2017"
],
"moduleResolution": "node",
"module": "esnext",
"target": "es2017",
"noUnusedLocals": true,
"noUnusedParameters": false,
"noImplicitAny": true,
"removeComments": true,
"skipLibCheck": true,
"preserveConstEnums": true,
"forceConsistentCasingInFileNames": true,
"noImplicitThis": true,
"strictNullChecks": true,
"sourceMap": true,
"resolveJsonModule": true,
"jsx": "react",
"jsxFactory": "h",
"types": [
"node",
"vitest/globals"
],
"plugins": [
{
"name": "typescript-tslint-plugin",
"alwaysShowRuleFailuresAsWarnings": false,
"ignoreDefinitionFiles": true,
"configFile": "./tslint.json",
"suppressWhileTypeErrorsPresent": false,
"mockTypeScriptVersion": false
}
],
},
"include": [
"src"
],
"exclude": [
"node_modules"
]
}