-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
23 lines (22 loc) · 1.12 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
{
"compilerOptions": {
"allowJs": false /* Allow JavaScript files to be type checked. */,
"alwaysStrict": false /* Parse in strict mode. */,
"esModuleInterop": true /* matches compilation setting */,
"isolatedModules": false /* to match webpack loader */,
"jsx": "preserve" /* Preserves jsx outside of Next.js. */,
"lib": [
"dom",
"es2017"
] /* 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. */,
"noEmit": true /* Do not emit outputs. Makes sure tsc only does type checking. */,
/* Strict Type-Checking Options, optional, but recommended. */
"noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */,
"noUnusedLocals": false /* Report errors on unused locals. */,
"noUnusedParameters": false /* Report errors on unused parameters. */,
"strict": false /* Enable all strict type-checking options. */,
"target": "esnext" /* The type checking input. */
}
}