-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.build.json
More file actions
39 lines (39 loc) · 974 Bytes
/
tsconfig.build.json
File metadata and controls
39 lines (39 loc) · 974 Bytes
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
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"composite": true,
"declaration": true,
"esModuleInterop": true,
"emitDeclarationOnly": true,
"experimentalDecorators": true,
"importHelpers": true,
"jsx": "react-jsx",
"lib": ["dom", "esnext"],
"module": "esnext",
"moduleResolution": "bundler",
"noEmit": true,
"noEmitHelpers": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"outDir": "dist",
"pretty": true,
"rootDir": ".",
"skipLibCheck": true,
"sourceMap": true,
"stripInternal": true,
"strict": true,
"target": "esnext",
"tsBuildInfoFile": ".typescript/tsconfig.build.tsbuildinfo",
"verbatimModuleSyntax": true
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.json",
".storybook/**/*.ts",
".storybook/**/*.tsx"
]
}