-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.base.json
38 lines (38 loc) · 1.07 KB
/
tsconfig.base.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
38
{
"compilerOptions": {
"target": "ES2020",
"jsx": "react",
"lib": ["DOM", "ES2020", "DOM.Iterable"],
"emitDecoratorMetadata": false,
"experimentalDecorators": false,
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "node",
"resolveJsonModule": true,
"typeRoots": ["./node_modules/@types", "./types"],
"types": ["node"],
"allowJs": false,
"strict": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"alwaysStrict": true,
"noFallthroughCasesInSwitch": false,
"noImplicitAny": true,
"noImplicitReturns": false,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"declaration": true,
"importHelpers": true,
"sourceMap": true,
"stripInternal": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"skipLibCheck": true,
"pretty": true
},
"include": ["packages", "types", "scripts", "stories"]
}