-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.json
More file actions
42 lines (42 loc) · 806 Bytes
/
tsconfig.json
File metadata and controls
42 lines (42 loc) · 806 Bytes
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
{
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
"checkJs": false,
"jsx": "react",
"lib": [
"esnext",
"dom"
],
"module": "commonjs",
"moduleResolution": "node",
"resolveJsonModule": true,
"skipLibCheck": true,
"outDir": "./dist",
"rootDir": ".",
"sourceMap": true,
"target": "es5",
"typeRoots": [
"./node_modules/@types"
],
"paths": {
"prop-types": [
"types/packages"
],
"react-textfit": [
"types/packages"
],
"word-ngrams": [
"types/word-ngrams"
]
},
"strict": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictPropertyInitialization": true
},
"exclude": [
"./node_modules/"
]
}