-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
31 lines (31 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
{
"include": ["src/**/*", "test/**/*", "./*.js"],
"exclude": ["node_modules", "dist"],
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext"],
"moduleResolution": "node",
"outDir": "./dist",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"alwaysStrict": true /* Parse in strict mode and emit "use strict" for each source file. */,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"forceConsistentCasingInFileNames": true,
"downlevelIteration": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"types": ["jest"] /* Type declaration files to be included in compilation. */,
"allowSyntheticDefaultImports": true /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */,
"baseUrl": "./",
"paths": {
"*": ["src/@types/*"]
}
},
"files": ["test/global.d.ts"]
}