-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
21 lines (21 loc) · 895 Bytes
/
tsconfig.json
File metadata and controls
21 lines (21 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* Visit https://aka.ms/tsconfig.json to read more about this file */
{
"compilerOptions": {
/******************************** TYPE CHECKING ******************************/
"strict": true,
/*********************************** MODULES *********************************/
"module": "ES2022",
"moduleResolution": "bundler",
/***************************** JAVASCRIPT SUPPORT ****************************/
"allowJs": true,
/***************************** INTEROP CONSTRAINTS ***************************/
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
/************************** LANGUAGE & ENVIRONMENT ***************************/
"lib": ["ES2021"],
"target": "ES2021",
/******************************** COMPLETENESS *******************************/
"skipLibCheck": true
},
"exclude": ["./coverage/*", "./dist/*"]
}