-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
37 lines (37 loc) · 1.01 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
26
27
28
29
30
31
32
33
34
35
36
37
{
"compileOnSave": false,
"compilerOptions": {
"composite": true,
"declaration": true,
"declarationMap": false,
"esModuleInterop": true,
"target": "ES5",
"sourceMap": true,
"lib": ["DOM", "DOM.Iterable", "ESNext", "ScriptHost"],
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"module": "CommonJS",
"moduleResolution": "Node",
"jsx": "react",
"allowJs": false,
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"resolveJsonModule": true,
"strict": true,
"strictBuiltinIteratorReturn": true,
"strictNullChecks": true,
"useUnknownInCatchVariables": true,
"stripInternal": true,
"baseUrl": ".",
"paths": {
"@pacote/*": ["./packages/*/src"]
}
}
}