-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 971 Bytes
/
tsconfig.json
File metadata and controls
33 lines (33 loc) · 971 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
{
"extends": "@tsconfig/strictest/tsconfig.json",
"compilerOptions": {
"lib": ["ES2020", "dom"],
"module": "esnext",
"sourceMap": true,
"checkJs": false,
"allowJs": false,
"jsx": "react-jsx",
"jsxImportSource": "@emotion/react",
"resolveJsonModule": true,
"moduleResolution": "node",
"exactOptionalPropertyTypes": false,
"declaration": true,
"declarationMap": true,
"baseUrl": "./",
// TODO: enable after react-native migration [C-3548]
"isolatedModules": false,
"paths": {
"~harmony/*": ["src/*"]
},
"plugins": [
{ "transform": "typescript-transform-paths" },
{ "transform": "typescript-transform-paths", "afterDeclarations": true }
],
"outDir": "build",
"declarationDir": "./",
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": false
},
"include": ["src"],
"exclude": ["node_modules", "build", "dist", "rollup.config.mjs"],
}