-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (21 loc) · 1.11 KB
/
Copy pathtsconfig.json
File metadata and controls
22 lines (21 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
"module": "commonjs",
"target": "es2015",
"declaration": true,
"outDir": "./dist",
/* Basic Options */
// "incremental": true, /* Enable incremental compilation */
/* Concatenate and emit output to single file. */
"types": ["node", "jest"],
"strict": true /* Enable all strict type-checking options. */,
/* Type declaration files to be included in compilation. */
"allowSyntheticDefaultImports": true /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */,
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
"skipLibCheck": true /* Skip type checking of declaration files. */,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
"resolveJsonModule": true
},
"include": ["src/**/*", "test/**/*"]
}