-
Notifications
You must be signed in to change notification settings - Fork 14
/
tsconfig.json
43 lines (43 loc) · 1.23 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"module": "ESNext",
"baseUrl": ".",
"rootDir": ".",
"lib": ["ESNext"],
"target": "ES2019",
"moduleDetection": "auto",
"moduleResolution": "Node",
"allowJs": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"checkJs": true,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"verbatimModuleSyntax": true,
"noImplicitAny": false,
"paths": {
"@helpers/*": ["src/helpers/*"],
"src/*": ["src/*"],
"build/*": ["plugins/*"]
}
},
"include": ["**/*.js", "**/*.cjs", "**/*.mjs", "**/*.ts", "**/*.tsx", "**/*.d.ts"],
"exclude": [".github", ".husky", "dist", "node_modules"]
}