-
Notifications
You must be signed in to change notification settings - Fork 25
/
tsconfig.json
43 lines (43 loc) · 1.22 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
{
"exclude": ["**/node_modules/**", "**/dist/**"],
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": false,
"experimentalDecorators": false,
"esModuleInterop": true,
"importHelpers": true,
// See https://devblogs.microsoft.com/typescript/typescript-and-babel-7/
"isolatedModules": true,
"jsx": "react-jsx",
"jsxImportSource": "@emotion/react",
"lib": ["ESNext", "DOM"],
"module": "ESNext",
"moduleResolution": "Node",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"resolveJsonModule": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"preserveSymlinks": true,
"pretty": true,
"removeComments": false,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"stripInternal": true,
"target": "ES2019",
"allowJs": true,
"noEmit": true,
"typeRoots": [
"@types",
// "@types-extensions",
"node_modules/@types"
],
"paths": {
// allow importing custom storybook components + helpers into stories via this alias
"@/storybook-helpers": ["./storybook/src/helpers/index"]
}
}
}