-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
39 lines (28 loc) · 1.1 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
35
36
37
38
39
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig to read more about this file */
/* Language and Environment */
"target": "ES5",
/* Specify a set of bundled library declaration files that describe the target environment. */
"lib": ["ESNext"],
/* Specify what module code is generated. */
"module": "CommonJS",
/* Specify how TypeScript looks up a file from a given module specifier. */
"moduleResolution": "Node",
/* Specify the root folder within your source files. */
"rootDir": ".",
/* Specify an output folder for all emitted files. */
"outDir": "./dist",
/* Create source map files for emitted JavaScript files. */
// "sourceMap": true,
/* Enable importing .json files. */
"resolveJsonModule": true,
/* Emit additional JavaScript to ease support for importing CommonJS modules. */
"esModuleInterop": true,
/* Enable all strict type-checking options. */
"strict": true,
/* Skip type checking all .d.ts files. */
"skipLibCheck": true
},
"exclude": ["node_modules", "jest.config.ts", "./tests/**/*.spec.ts"]
}