Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasDower authored Apr 18, 2023
0 parents commit cc5d82d
Show file tree
Hide file tree
Showing 10 changed files with 9,685 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": "standard-with-typescript",
"overrides": [
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./src/tsconfig.json"
},
"rules": {
"semi": [2, "always"],
"@typescript-eslint/semi": 0
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# WebGLTemplateBoilerplate
A simple webpack template for WebGL projects that supports hot-reloading.

## Getting Started
1. Clone this repo,
2. `npm install`,
3. `npm run dev`,
4. Open `localhost:8080`
18 changes: 18 additions & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Three.js TypeScript Tutorials by Sean Bradley : https://sbcode.net/threejs</title>
<style>
body {
overflow: hidden;
margin: 0px;
}
</style>
</head>

<body>
<script type="module" src="bundle.js"></script>
</body>
</html>
Loading

0 comments on commit cc5d82d

Please sign in to comment.