-
Notifications
You must be signed in to change notification settings - Fork 47
/
tsconfig.json
36 lines (36 loc) · 1.15 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
{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"baseUrl": "./",
"paths": {
"@gympass/yoga-common/*": ["./packages/common/src/*"],
"@gympass/yoga-common": ["./packages/common/src"],
"@gympass/yoga-tokens/*": ["./packages/tokens/src/*"],
"@gympass/yoga-tokens": ["./packages/tokens/src"],
"@gympass/yoga-system/*": ["./packages/system/src/*"],
"@gympass/yoga-system": ["./packages/system/src"],
"@gympass/yoga/*": ["./packages/yoga/src/*"],
"@gympass/yoga": ["./packages/yoga/src"],
"@gympass/illustrations": ["./packages/illustrations/src"],
"@gympass/icons": ["./packages/icons/src"]
},
"declaration": true,
"outDir": "./dist/",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"noImplicitAny": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"skipLibCheck": true,
"moduleResolution": "node",
"sourceMap": false,
"allowJs": true,
"checkJs": false,
"jsx": "react-jsx"
}
}