-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
53 lines (50 loc) · 1.3 KB
/
tsconfig.json
File metadata and controls
53 lines (50 loc) · 1.3 KB
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
{
"include": [
"@types/**/*.ts",
"src/**/*.js",
"src/**/*.ts",
"src/**/*.tsx",
".storybook/**/*.ts",
".storybook/**/*.tsx",
"vite.config.ts",
"alchemy.run.ts",
"eslint.config.ts",
"commitlint.config.ts"
],
"exclude": ["node_modules"],
"compilerOptions": {
/* Base options: */
"target": "ES2022",
"jsx": "react-jsx",
"module": "ESNext",
"allowJs": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["vite/client", "@cloudflare/workers-types"],
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": false,
"noEmit": true,
/* Linting */
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"noImplicitAny": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noUncheckedSideEffectImports": true,
"useUnknownInCatchVariables": true,
"allowArbitraryExtensions": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
/* Paths mapping */
"paths": {
"~/*": ["./src/*"],
"~/public/*": ["./public/*"],
"~/package.json": ["./package.json"],
"~/storybook/*": ["./.storybook/*"]
}
}
}