-
Notifications
You must be signed in to change notification settings - Fork 38
/
tsconfig.json
37 lines (37 loc) · 1.02 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": "src",
"declaration": true,
"declarationDir": "dist/types",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"keyofStringsOnly": true,
"lib": ["es2016", "dom", "es5", "scripthost", "esnext", "esnext.asynciterable"],
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"outDir": "./dist",
"pretty": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"target": "es5",
"typeRoots": ["node_modules/@types", "./typings", "./typings/typings.d.ts"],
"types": ["isomorphic-fetch", "node", "jest"]
},
"exclude": [
"node_modules",
"tmp",
"**/node_modules/*",
// "src/**/*.test.ts",
"**/generated/*"
// "src/test/**/*"
],
"include": ["src/**/*", "typings"]
}