Skip to content

Commit

Permalink
setup jsconfig for all examples
Browse files Browse the repository at this point in the history
this allows vs to find all the project files
  • Loading branch information
KilledByAPixel committed Nov 14, 2024
1 parent b29ae1a commit 9c92e3d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
12 changes: 12 additions & 0 deletions examples/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"compilerOptions": {
},
"include": [
"./**/*.js", // include local files
"../src/*.js", // include littlejs engine files
],
"exclude": [
"../src/littlejs/engineRelease.js",
"../src/littlejs/engineExport.js"
]
}
13 changes: 0 additions & 13 deletions examples/starter/jsconfig.json

This file was deleted.

0 comments on commit 9c92e3d

Please sign in to comment.