-
-
Notifications
You must be signed in to change notification settings - Fork 346
Expand file tree
/
Copy pathjsconfig.json
More file actions
25 lines (25 loc) · 606 Bytes
/
jsconfig.json
File metadata and controls
25 lines (25 loc) · 606 Bytes
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
{
"compilerOptions": {
"module": "ESNext",
"target": "ES2022",
"lib": ["ES2022", "DOM"],
"sourceMap": true,
"allowJs": true,
"checkJs": true,
"noUnusedLocals": false,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"noImplicitAny": false
},
"include": ["./src/**/*.js"],
"exclude": ["node_modules"]
}