-
Notifications
You must be signed in to change notification settings - Fork 44
/
tsconfig.json
34 lines (33 loc) · 1.3 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": {
/* Basic Options */
"target": "ES6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */
"module": "commonjs", /* Specify module code generation: 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"lib": ["es2018", "es2017.object", "dom"], /* Specify library files to be included in the compilation: */
"allowJs": false, /* Allow javascript files to be compiled. */
"declaration": true, /* Generates corresponding '.d.ts' file. */
"sourceMap": true, /* Generates corresponding '.map' file. */
"outDir": "../", /* Redirect output structure to the directory. */
"rootDir": "src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
/* Module Resolution Options */
"types": [
"node"
]
/* Source Map Options */
/* Experimental Options */
},
"files": [
"src/NetworkTest/index.ts",
// "test/NetworkTest.spec.ts"
],
/*
*/
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules",
"dist",
"test/setup/setup.js"
]
}