-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
64 lines (64 loc) · 1.74 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
60
61
62
63
64
{
"compilerOptions": {
"allowJs": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"baseUrl": "./src",
"checkJs": true,
"esModuleInterop": true,
"declaration": true,
"declarationDir": "./dist",
"declarationMap": true,
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"isolatedModules": true,
"jsx": "react-jsx",
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"module": "ESNext",
"moduleResolution": "Bundler",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "./dist",
"paths": {
"@constants": ["constants.ts"],
"@elements/*": ["elements/*"],
"@fields/*": ["fields/*"],
"@hooks/*": ["hooks/*"],
"@libs/*": ["libs/*"],
"@tables/*": ["tables/*"],
"@theme": ["theme.ts"],
"@types_/*": ["types/*"],
"@utils/*": ["utils/*"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"target": "ES2022",
"useUnknownInCatchVariables": true,
"verbatimModuleSyntax": true
},
"include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx", ".storybook/**/*", "vite.config.ts"],
"exclude": [
"config/*",
"coverage/*",
"dist/*",
"e2e/release/sample/*",
"node_modules/*",
"scripts/*",
"storybook-static/*",
".eslintrc.cjs"
]
}