-
Notifications
You must be signed in to change notification settings - Fork 78
/
tsconfig.json
52 lines (52 loc) · 1.01 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
{
"compileOnSave": false,
"compilerOptions": {
"module": "commonjs",
"noUnusedLocals": false,
"noUnusedParameters": false,
"target": "es5",
"sourceMap": true,
"moduleResolution": "node",
"allowJs": false,
"declaration": true,
"jsx": "react",
"downlevelIteration": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
"outDir": "./build",
"noLib": false,
"lib": ["dom", "es5", "es2015", "es2016.array.include"],
"typeRoots": [
"./node_modules/@types"
],
"paths": {
"react-uwp": ["./src"],
"react-uwp/*": ["./src/*"]
},
"baseUrl": "."
},
"filesGlob": [
"**/*.ts",
"**/*.tsx"
],
"files": [
"./src/index.d.ts"
],
"include": [
"*.ts",
"**/*.ts",
"**/*.tsx",
"__mocks__/**/*.ts",
"__mocks__/**/*.tsx",
"./typings/index.d.ts"
],
"exclude": [
"./build",
"./scripts",
"./docs",
"./packages",
"./__mocks__",
"./node_modules"
]
}