-
-
Notifications
You must be signed in to change notification settings - Fork 216
Expand file tree
/
Copy pathtsconfig.json
More file actions
47 lines (47 loc) · 1.33 KB
/
tsconfig.json
File metadata and controls
47 lines (47 loc) · 1.33 KB
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
42
43
44
45
46
47
{
"compilerOptions": {
"target": "ES2022",
"module": "node20",
"moduleResolution": "nodenext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
// esModuleInterop=true sets allowSyntheticDefaultImports=true,
"esModuleInterop": true,
"resolveJsonModule": true,
// Enable project compilation
"composite": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"inlineSources": false,
"stripInternal": true,
"strict": true,
"strictPropertyInitialization": false,
"noImplicitAny": true,
"downlevelIteration": false,
"noImplicitReturns": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
// Disable type checking of declaration files, enable in packages where it makes sense if any
"skipLibCheck": true,
// Disallow inconsistently-cased references to the same file
"forceConsistentCasingInFileNames": true,
"noImplicitOverride": true,
"experimentalDecorators": true,
"jsx": "react",
"verbatimModuleSyntax": true,
"erasableSyntaxOnly": true
},
"include": [
"**/src/**/*.ts",
"**/test/**/*.ts",
"**/src/**/*.tsx",
"**/test/**/*.tsx",
"**/packages/*/*.ts",
"**/packages/*/*.js",
"**/build/**/*.mts",
"*.js",
"*.ts",
"*.d.ts"
],
"exclude": ["dist/**/*", "lib/**/*", "node_modules/**/*"]
}