forked from steveukx/git-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
44 lines (44 loc) · 1.03 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
{
"compilerOptions": {
"allowJs": false,
"skipLibCheck": false,
"target": "es2015",
"module": "commonjs",
"lib": [
"dom",
"esnext"
],
"jsx": "react",
"rootDir": ".",
// optionally pipe output an alternative directory
// TODO once all content converted to TS
// "outDir": "lib",
"downlevelIteration": true,
"strict": true,
"removeComments": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": false,
"esModuleInterop": false,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"composite": true,
"declaration": true,
"declarationMap": false,
"sourceMap": true,
"paths": {
},
"noEmit": true
},
"exclude": [ "node_modules" ],
"include": [
"src/lib/**/*.ts",
"test/__fixtures__/**/*.ts",
"test/integration/**/*.ts",
"test/unit/**/*.ts",
"typings/index.d.ts"
]
}