-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
tsconfig.json
42 lines (42 loc) · 1.19 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
{
"extends": "@ivangabriele/tsconfig-react",
"compilerOptions": {
"baseUrl": "./src",
"incremental": true,
"jsx": "react-jsx",
"noImplicitAny": false,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"paths": {
"@core/*": ["core/*"],
"@components/*": ["components/*"],
"@elements/*": ["elements/*"],
"@hooks/*": ["hooks/*"],
"@layouts/*": ["layouts/*"],
"@libs/*": ["libs/*"],
"@screens/*": ["screens/*"],
"@utils/*": ["utils/*"]
},
"skipLibCheck": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"target": "ES2022",
"types": ["node"],
"useUnknownInCatchVariables": true,
"verbatimModuleSyntax": true
},
"exclude": [".yarn/*", "build/*", "clamav/*", "node_modules/*", "src-tauri/*"],
"include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx", ".storybook/**/*.ts", ".storybook/**/*.tsx"],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}