ref: Update template to use the new plugin manifest structure (#10)

* [manifest-structure] - added manifest structure to template

* Update README.md

Co-authored-by: Anton Georgiev <antobinary@users.noreply.github.com>

---------

Co-authored-by: Anton Georgiev <antobinary@users.noreply.github.com>
This commit is contained in:
Guilherme Pereira Leme
2024-10-29 17:12:23 -03:00
committed by GitHub
parent 1a8d354945
commit 3eba8525da
7 changed files with 10380 additions and 27 deletions

View File

@@ -1,6 +1,6 @@
{
"compilerOptions": {
"outDir": "./dist/",
"outDir": "./dist-tsc/",
"noImplicitAny": true,
"module": "es6",
"target": "es5",
@@ -8,7 +8,11 @@
"allowJs": true,
"moduleResolution": "node"
},
"include": ["src/*"],
"paths": {
"*": ["node_modules/@types/*", "node_modules/*"]
}
"*": ["node_modules"]
},
"exclude": [
"node_modules"
]
}