-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
25 lines (23 loc) · 1.08 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
{
"compilerOptions": {
"alwaysStrict": true /* Parse in strict mode. */,
"esModuleInterop": true /* matches compilation setting */,
"jsx": "react" /* Compile to react */,
"lib": [
"dom",
"esnext"
] /* List of library files to be included in the type checking. */,
"module": "esnext" /* Specifies the type of module to type check. */,
"moduleResolution": "node" /* Determine how modules get resolved. */,
"outDir": "dist" /* Directory to compile output to */,
/* Strict Type-Checking Options, optional, but recommended. */
"noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */,
"noUnusedLocals": true /* Report errors on unused locals. */,
"noUnusedParameters": true /* Report errors on unused parameters. */,
"strict": true /* Enable all strict type-checking options. */,
"target": "esnext" /* The type checking input. */,
/* TidyIQ Options */
"removeComments": true /* Remove comments from output */
},
"exclude": ["**/dist"] /* Folders to exclude from type checking */
}