-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
59 lines (59 loc) · 1.46 KB
/
tsconfig.json
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
49
50
51
52
53
54
55
56
57
58
59
{
"compilerOptions": {
"module": "ES6",
"moduleResolution": "Node",
"lib": ["DOM", "ESNext", "ScriptHost", "WebWorker"],
"moduleDetection": "auto",
"target": "ES2022",
"declaration": true,
"resolveJsonModule": true,
"declarationMap": true,
"allowJs": true,
"checkJs": true,
"typeRoots": ["./node_modules/@types/", "./types/"],
"declarationDir": "./types/",
"jsx": "react-jsx",
"emitDeclarationOnly": false,
"baseUrl": ".",
"outDir": "./build/",
"strict": true,
"alwaysStrict": true,
"forceConsistentCasingInFileNames": true,
"allowUmdGlobalAccess": true,
"allowUnreachableCode": false,
"allowUnusedLabels": true,
"isolatedModules": false,
"strictNullChecks": true,
"strictFunctionTypes": true,
"esModuleInterop": true,
"skipLibCheck": false,
"noUnusedParameters": false,
"noUnusedLocals": false,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"pretty": true,
"removeComments": false,
"diagnostics": false,
"extendedDiagnostics": false,
"disableSizeLimit": false,
"plugins": [
{
"name": "typescript-eslint-language-service"
},
{
"name": "typescript-styled-plugin"
}
]
},
"compileOnSave": false,
"buildOptions": {
"verbose": true,
"traceResolution": true
},
"include": ["**/*", "eslint.config.cjs", "./.prettierrc.cjs"]
}