-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
tsconfig.json
41 lines (38 loc) Β· 913 Bytes
/
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
38
39
40
41
{
"compilerOptions": {
// Typechecking
"target": "ES2021",
"lib": ["ES2022"],
"strict": true,
"allowJs": true,
"skipLibCheck": true,
"useUnknownInCatchVariables": false,
"noImplicitReturns": true,
// Compat
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"experimentalDecorators": true,
// Resolution
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true,
// Output
"module": "commonjs",
"declaration": true,
"importHelpers": true,
"alwaysStrict": false,
"jsx": "react",
"noEmit": true,
},
"exclude": [
".pnp.cjs",
"packages/*/lib",
"packages/*/bin",
"packages/*/bundles",
"packages/yarnpkg-doctor/fixtures",
"packages/gatsby",
"packages/docusaurus",
"packages/docusaurus/build",
"packages/yarnpkg-libzip/artifacts"
]
}