-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
19 lines (19 loc) · 789 Bytes
/
tsconfig.json
File metadata and controls
19 lines (19 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"compilerOptions": {
"jsx": "react",
"lib": ["DOM", "ESNext"],
"incremental": true, /* Enable incremental compilation */
"target": "ESNext", /* Specify ECMAScript target version: */
"declaration": true, /* Concatenate & emit output to single file.*/
"moduleResolution": "node",
"outDir": "lib", /* Redirect output to the directory. */
"allowJs": true,
"resolveJsonModule": true,
"esModuleInterop": true, /* Enables intero between CommonJS and ES */
"skipLibCheck": true, /* Skip type checking of declaration files. */
"forceConsistentCasingInFileNames": true /* Disallow inconsistently */
},
"include": [
"./src/*.tsx"
]
}