-
Notifications
You must be signed in to change notification settings - Fork 10
/
tsconfig.json
35 lines (35 loc) · 1.02 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
{
"compilerOptions": {
"baseUrl": ".",
"target": "es6",
"lib": ["es6", "dom", "dom.iterable", "esnext"],
"allowJs": false,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": false,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"declaration": false,
"resolveJsonModule": true,
"jsx": "react",
"paths": {
"@sparkpost/matchbox*": ["packages/matchbox/src", "packages/matchbox/src*"],
"@sparkpost/matchbox-icons*": ["packages/matchbox-icons/src", "packages/matchbox-icons/src*"],
"@sparkpost/design-tokens": ["packages/design-tokens"],
"@sparkpost/matchbox-media*": ["packages/matchbox-media*"]
}
},
"include": [
"index.d.ts",
"libby/**/*.ts",
"libby/**/*.tsx",
"libby/**/*.js",
"packages/matchbox/src/*",
"packages/matchbox-media/*",
"packages/matchbox-icons/*",
"packages/design-tokens/*"
],
"exclude": ["node_modules", "dist", "src/**/*.test.js"]
}