forked from git-temporal/git-temporal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
30 lines (30 loc) · 799 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"strict": false,
"baseUrl": "./src",
"downlevelIteration": true,
"esModuleInterop": true,
"jsx": "react",
"lib": ["es7", "dom", "dom.iterable"],
"listFiles": true,
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "./lib",
"pretty": false,
"removeComments": true,
"resolveJsonModule": true,
"sourceMap": false,
"suppressImplicitAnyIndexErrors": true,
"target": "es6",
"typeRoots": ["**/node_modules/@types", "src/types"],
"types": ["node"]
},
"exclude": ["node_modules"],
"include": ["**/*.ts"]
}