forked from goldcaddy77/warthog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
30 lines (30 loc) · 984 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,
"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": ["jest", "isomorphic-fetch", "node"]
},
"exclude": ["node_modules", "**/node_modules/*", "src/**/*.test.ts", "**/generated/*"],
"include": ["src/**/*", "typings"]
}