-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
33 lines (32 loc) · 1.01 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
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
"target": "es2017",
"module": "commonjs",
"moduleResolution": "node",
/* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
"lib": [
"esnext",
"dom"
],
/* Specify library files to be included in the compilation. */
"declaration": true,
/* Generates corresponding '.d.ts' file. */
"declarationDir": "./",
/* Redirect output structure to the directory. */
"outDir": "./",
/* Redirect output structure to the directory. */
/* Strict Type-Checking Options */
"strict": true,
/* Enable all strict type-checking options. */
"esModuleInterop": true,
/* Advanced Options */
"skipLibCheck": true,
/* Skip type checking of declaration files. */
"forceConsistentCasingInFileNames": true
/* Disallow inconsistently-cased references to the same file. */
},
"exclude": [
"dist"
]
}