-
Notifications
You must be signed in to change notification settings - Fork 349
/
tsconfig.json
48 lines (48 loc) · 1.26 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
44
45
46
47
48
{
"compilerOptions": {
"allowJs": false,
"baseUrl": "./",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react-jsx",
"module": "esnext",
"lib": ["es6", "dom"],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"target": "es6",
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"strictFunctionTypes": true,
"skipLibCheck": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"plugins": [
{
"name": "typescript-plugin-css-modules",
"options": {
"customMatcher": "\\.css$"
}
}
]
},
"exclude": [
"dist/**/*",
"node_modules",
"**/*.json" // Don't try and check JSON files
],
// https://www.typescriptlang.org/docs/handbook/project-references.html#guidance
"files": [],
"references": [
{ "path": "./packages/gestalt" },
{ "path": "./packages/eslint-plugin-gestalt" },
{ "path": "./packages/gestalt-codemods" },
{ "path": "./packages/gestalt-datepicker" },
{ "path": "./packages/gestalt-charts" },
{ "path": "./docs" },
{ "path": "./packages/gestalt-icons-android" }
]
}