forked from artsy/reaction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
43 lines (43 loc) · 1.03 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
{
"compilerOptions": {
"esModuleInterop": true,
"baseUrl": "src",
"declaration": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDeclarationOnly": true,
"incremental": true,
"jsx": "react",
"lib": ["dom", "es2015", "es2016", "es2017", "esnext.asynciterable"],
"module": "commonjs",
"moduleResolution": "node",
"noUnusedLocals": true,
"outDir": "dist",
"paths": {
"storybook/*": ["./__stories__/*"],
"Analytics/*": ["./Analytics/*"],
"Assets/*": ["./Assets/*"],
"Components/*": ["./Components/*"],
"Styleguide/*": ["./Styleguide/*"],
"package.json": ["./package.json"]
},
"plugins": [
{
"name": "typescript-styled-plugin"
}
],
"pretty": true,
"rootDir": "src",
"sourceMap": true,
"target": "es2015"
},
"include": ["typings/*.d.ts", "src/**/*.ts", "src/**/*.tsx"],
"exclude": [
"node_modules",
"dist",
"data",
"externals",
"danger",
"src/__generated__/**.ts"
]
}