[add-lint-and-ci] - added lint, ci and boilerplate for plugin building

This commit is contained in:
Guilherme Leme
2024-06-19 12:34:32 -03:00
parent 9496076bab
commit a2b1373008
15 changed files with 470 additions and 1 deletions

14
tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": true,
"module": "es6",
"target": "es5",
"jsx": "react",
"allowJs": true,
"moduleResolution": "node"
},
"paths": {
"*": ["node_modules/@types/*", "node_modules/*"]
}
}