forked from jpmonette/bscscan-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 755 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 755 Bytes
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
{
"compilerOptions": {
"outDir": "lib",
"sourceMap": true,
"noImplicitAny": true,
"removeComments": true,
"module": "commonjs",
"target": "es5",
"lib": ["es7", "dom"],
"moduleResolution": "node",
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": false,
"noImplicitThis": true,
"noStrictGenericChecks": false,
"esModuleInterop": true,
"resolveJsonModule": true,
"strictNullChecks": true,
"strict": true,
"suppressImplicitAnyIndexErrors": false,
"noUnusedLocals": false,
"declaration": true,
"typeRoots": ["typings", "node_modules/@types"]
},
"include": ["src/**/*", "index.ts"],
"exclude": ["node_modules", "dist", "**/*.spec.ts"]
}