-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathtsconfig.json
More file actions
45 lines (45 loc) · 791 Bytes
/
tsconfig.json
File metadata and controls
45 lines (45 loc) · 791 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
43
44
45
{
"compileOnSave": false,
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"esModuleInterop": true,
"experimentalDecorators": true,
"importHelpers": true,
"jsx": "react",
"lib": [
"DOM",
"DOM.Iterable",
"ESNext",
"ScriptHost"
],
"module": "ESNext",
"moduleResolution": "node",
"noImplicitReturns": true,
"noUnusedParameters": true,
"outDir": "./dist",
"rootDir": "./source",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ESNext",
"typeRoots": [
"./source/types",
"node_modules/@types"
],
"types": [
"node"
]
},
"include": [
"source/**/*.ts",
"source/**/*.tsx"
],
"exclude": [
"node_modules",
"test",
"**/*.js",
"**/*.test.*"
]
}