-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
31 lines (31 loc) · 937 Bytes
/
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
{
"compilerOptions": {
"jsx": "react",
"baseUrl": ".",
"paths": {
"@maxcwolf/ui-react-native": ["./packages/ui-react-native"],
"@maxcwolf/ui-tokens": ["./packages/ui-tokens"],
"@maxcwolf/playground": ["./packages/playground"]
},
"outDir": "typescript",
"composite": true,
"target": "esnext",
"lib": ["esnext"],
"module": "esnext",
"moduleResolution": "node",
"allowJs": true,
"noImplicitAny": false,
"incremental": true /* Enable incremental compilation */,
"isolatedModules": true,
"strict": true,
"skipLibCheck": true,
"noEmitHelpers": true,
"importHelpers": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"declaration": true /* Generates corresponding '.d.ts' file. */,
"sourceMap": true /* Generates corresponding '.map' file. */
}
}