forked from microsoft/reactxp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
36 lines (34 loc) · 828 Bytes
/
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
{
"compilerOptions": {
"declaration": true,
"noResolve": false,
"jsx": "react",
"module": "commonjs",
"target": "es5",
"experimentalDecorators": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"forceConsistentCasingInFileNames": true,
"outDir": "dist/",
"lib": [
"es5",
"dom"
],
"types" : ["lodash", "react", "react-dom", "react-native"]
},
"include": [
"src/**/*"
],
"exclude": [
"dist",
"extensions",
"node_modules",
"samples",
"website"
]
}