-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
18 lines (17 loc) · 773 Bytes
/
tsconfig.json
File metadata and controls
18 lines (17 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"compilerOptions": {
"incremental": true, /* Enable incremental compilation */
"target": "es6", /* Specify ECMAScript target version: */
"module": "commonjs", /* 'none', 'commonjs', 'amd', 'system', etc */
"declaration": true, /* Concatenate & emit output to single file.*/
"outDir": "src", /* Redirect output to the directory. */
"esModuleInterop": true, /* Enables intero between CommonJS and ES */
"skipLibCheck": true, /* Skip type checking of declaration files. */
"forceConsistentCasingInFileNames": true, /* Disallow inconsistently */
"experimentalDecorators": true
},
"include": [
"src"
],
"exclude": ["node_modules", "**/__tests__/*"]
}