Skip to content

Commit 7f67c6e

Browse files
author
Amro Khalil
committed
Adds VS Code config and JS project setup files
Introduces editor configuration and JavaScript project settings to improve development consistency and code quality for browser scripts.
1 parent 5857ae8 commit 7f67c6e

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": []
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"C_Cpp.autocompleteAddParentheses": true
3+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"compilerOptions": {
3+
"module": "ESNext",
4+
"moduleResolution": "Bundler",
5+
"target": "ES2022",
6+
"jsx": "react-jsx",
7+
"allowImportingTsExtensions": true,
8+
"strictNullChecks": true,
9+
"strictFunctionTypes": true
10+
},
11+
"exclude": [
12+
"node_modules",
13+
"**/node_modules/*"
14+
]
15+
}
Binary file not shown.

0 commit comments

Comments
 (0)