-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
19 lines (19 loc) · 1011 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"outDir": "./dist",
"sourceMap": false,
"strict": false /* Enable all strict type-checking options. */,
"noImplicitAny": false /* Raise error on expressions and declarations with an implied 'any' type. */,
"strictNullChecks": false /* Enable strict null checks. */,
"noImplicitThis": false /* Raise error on 'this' expressions with an implied 'any' type. */,
"alwaysStrict": false /* Parse in strict mode and emit "use strict" for each source file. */,
"noUnusedLocals": false /* Report errors on unused locals. */,
"noUnusedParameters": false /* Report errors on unused parameters. */,
"noImplicitReturns": false /* Report error when not all code paths in function return a value. */,
"noFallthroughCasesInSwitch": false /* Report errors for fallthrough cases in switch statement. */,
"typeRoots": ["node_modules/@types"]
},
"exclude": ["./dist", "./node_modules"]
}