-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathjsconfig.json
More file actions
19 lines (17 loc) · 925 Bytes
/
Copy pathjsconfig.json
File metadata and controls
19 lines (17 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
/* File : jsconfig.json */
/* Purpose: Provides IntelliSense and logical type-checking for VSCode */
"compilerOptions": {
"checkJs": true, /* Enable type-checking for JS files */
"module": "ESNext", /* Use modern import/export module syntax */
"moduleResolution": "Bundler", /* Resolve modules for Vite/Webpack/Rollup*/
"target": "ES2020", /* Set language level for IntelliSense */
"strict": true, /* Enable all strict type-checking rules */
"strictNullChecks": true, /* Prevent errors on null/undefined values*/
"strictFunctionTypes": true /* Ensure function parameters match types */
},
"exclude": [
"node_modules", /* Skip indexing of Node.js dependencies */
"**/node_modules/*" /* Ignore all nested Node.js library files*/
]
}