Skip to content

Commit 893cfc3

Browse files
committed
calendário de tarefas em TypeScript e CustomElements
0 parents  commit 893cfc3

27 files changed

+1447
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v16.4.0

.prettierrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true
4+
}

esbuild.config.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import esbuildServe from "esbuild-serve";
2+
esbuildServe(
3+
{
4+
logLevel: "info",
5+
entryPoints: ["src/main.ts"],
6+
bundle: true,
7+
outfile: "public/main.js",
8+
sourcemap: true,
9+
},
10+
{ root: "public" }
11+
);

0 commit comments

Comments
 (0)