forked from artsy/force
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
55 lines (55 loc) · 1.12 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
49
50
51
52
53
54
55
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "./src",
"downlevelIteration": true,
"declaration": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"incremental": true,
"jsx": "react",
"module": "commonjs",
"moduleResolution": "node",
"noUnusedLocals": true,
// "noUnusedParameters": true,
// Need output directory for incremental type-checking
"outDir": ".cache/tsc",
"pretty": true,
"skipLibCheck": true,
"sourceMap": true,
"target": "es2016",
"paths": {
"package.json": [
"./package.json"
],
"storybook/*": [
"./v2/__stories__/*"
],
"v2/*": [
"./v2/*"
],
},
"plugins": [
{
"name": "typescript-styled-plugin"
}
],
"strict": false
},
"include": [
"./src",
"./src/v2/Typings/*.d.ts",
"typings/*.d.ts"
],
"exclude": [
"node_modules",
"dist",
"data",
"externals",
"danger",
"src/__generated__/**.ts",
"src/v2/__generated__/**.ts"
]
}