-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
38 lines (29 loc) · 1.14 KB
/
tsconfig.json
File metadata and controls
38 lines (29 loc) · 1.14 KB
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
{
"compilerOptions": {
/* Language and Environment */
/* The emitted JavaScript should be ES 2015. */
"target": "es2016",
/* Modules */
/* Using Node's native ES Modules support. */
"module": "NodeNext",
/* Source files will be located in an `src` folder. */
"rootDir": "src",
/* Using Node's ES Modules support for the module resolution strategy. */
"moduleResolution": "NodeNext",
/* Create source map files for emitted JavaScript files. */
"sourceMap": true,
/* Emitted JS files will go in a `dist` folder. */
"outDir": "dist",
/* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
/* For more details on this one: https://www.typescriptlang.org/tsconfig#esModuleInterop*/
"esModuleInterop": true,
/* Ensure that casing is correct in imports. */
"forceConsistentCasingInFileNames": true,
/* Type Checking */
/* Enable all strict type-checking options. */
"strict": true,
/* Completeness */
/* Skip type checking for all .d.ts files. */
"skipLibCheck": true
}
}