This commit is contained in:
2025-01-06 18:30:57 +01:00
parent 19f48bf59d
commit 6ff74a43c9
5 changed files with 113 additions and 0 deletions

19
jsconfig.json Normal file
View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"baseUrl": ".", // Make the current folder the base for resolving paths
"paths": {
// Aliases (optional, for convenience if you ever want to use them)
"/script.js": [
"../../../../public/script.js"
], // Points to the `public` folder
"/scripts/*": [
"../../../../public/scripts/*"
] // Points to `public/scripts`
// No need for custom aliases for relative paths; they resolve naturally
}
},
"include": [
"**/*"
] // Includes all files in your extension folder
}