-
Notifications
You must be signed in to change notification settings - Fork 156
/
tsconfig.json
34 lines (34 loc) · 1 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
{
"compilerOptions": {
"baseUrl": "/",
"importHelpers": true,
"allowJs": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": false,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"declaration": true,
"stripInternal": true,
"strictNullChecks": true,
"downlevelIteration": true,
"lib": ["es6", "DOM"],
"moduleResolution": "node",
"outDir": "dist",
"target": "es6",
"module": "commonjs",
"removeComments": true,
"incremental": true,
"skipLibCheck": true, // Fix conflict with node types: https://github.com/DefinitelyTyped/DefinitelyTyped/issues/16825
"plugins": [{ "name": "typescript-tslint-plugin" }],
"types": ["node", "jest"],
"paths": {
"*": ["src/typings/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "src/**/*.test.ts"]
}