chore: initialize repo with Copilot LSP config

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Dávid Kaya
2026-03-21 09:25:14 +01:00
co-authored by Copilot
commit 1ed3d3f652
7 changed files with 104 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"noEmit": true,
"skipLibCheck": true,
"types": [
"node"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx"
]
}