-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
62 lines (55 loc) · 1.4 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
56
57
58
59
60
61
62
{
"version": "3.3.3",
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": false,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"strictNullChecks": false,
"noStrictGenericChecks": true,
"outDir": "lib/",
"declaration": true,
"esModuleInterop": true,
"target": "ES5",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"removeComments": false,
"jsx": "react",
"pretty": true,
"lib": ["es2015", "DOM"],
"rootDir": "./",
"skipLibCheck": true
},
"exclude": [
"*.js",
"*.json",
"build",
"./wip/*",
"./wip/*.ts",
"./wip/**",
"./wip/**.ts"
],
"include": [
"./node_modules/@types/**/*.d.ts",
"./node_modules/moment/moment.d.ts",
"./node_modules/typescript/lib/lib.es2015.d.ts",
"./index.ts",
"./react.tsx",
"./shared.ts",
"./node.ts",
"./browser.ts",
"./typings/*.d.ts",
"./typings/**/*.d.ts",
"./src/*.ts",
"./src/**/*.ts",
"./src/*.tsx",
"./src/**/*.tsx",
"./test/*.ts",
"./test/**/*.ts",
"./test/*.tsx",
"./test/**/*.tsx"
]
}