Update workspace, update templates

This commit is contained in:
Insality 2022-03-08 20:41:55 +02:00
parent dc76d3b3d4
commit 81c8e4aa00
4 changed files with 32 additions and 19 deletions

30
druid.code-workspace Normal file
View File

@ -0,0 +1,30 @@
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.exclude": {
"**/.git": true, // this is a default value
"**/.DS_Store": true, // this is a default value
"**/node_modules": true, // this excludes all folders
// named "node_modules" from
// the explore tree
// alternative version
"node_modules": true, // this excludes the folder
// only from the root of
// your workspace
".internal": true,
"bundle": true,
"input": true,
"media": true,
"build": true,
".github": true,
".deployer_cache": true,
"dist": true
}
}
}

View File

@ -1,5 +1,6 @@
local component = require("druid.component")
---@class component_name : druid.base_component
local Component = component.create("component_name")
local SCHEME = {

View File

@ -1,5 +1,6 @@
local component = require("druid.component")
---@class component_name : druid.base_component
local Component = component.create("component_name")
-- Scheme of component gui nodes

View File

@ -1,19 +0,0 @@
{
"folders": [
{
"path": "../test"
},
{
"path": "../editor_scripts"
},
{
"path": "../example"
},
{
"path": "../docs_md"
},
{
"path": "."
}
]
}