forked from hpcc-systems/hpcc-js-comms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
28 lines (28 loc) · 1.02 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
{
"compilerOptions": {
"target": "es5",
"module": "es6",
"lib": [
"es2015",
"dom"
],
"declaration": true, /* Generates corresponding '.d.ts' file. */
"sourceMap": true, /* Generates corresponding '.map' file. */
"outDir": "./lib", /* Redirect output structure to the directory. */
"importHelpers": true, /* Import emit helpers from 'tslib'. */
/* Strict Type-Checking Options */
"strict": true, /* 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. */
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
"types": [
"mocha",
"chai"
]
},
"include": [
"./src/index-node.ts",
"./src/index-browser.ts"
],
"compileOnSave": true
}