-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
24366ac
commit fec9f56
Showing
19 changed files
with
236 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"eslint.useFlatConfig": true, | ||
"eslint.useESLintClass": true | ||
} | ||
"eslint.useFlatConfig": true, | ||
"eslint.useESLintClass": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,78 +1,70 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "npm", | ||
"script": "build", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"icon": { | ||
"id": "tools", | ||
"color": "terminal.ansiGreen" | ||
}, | ||
"problemMatcher": [ | ||
"$tsc" | ||
], | ||
"label": "Build", | ||
"detail": "Builds the project for production" | ||
}, | ||
{ | ||
"type": "npm", | ||
"script": "dev", | ||
"problemMatcher": [ | ||
"$tsc-watch" | ||
], | ||
"icon": { | ||
"id": "eye-watch", | ||
"color": "terminal.ansiCyan" | ||
}, | ||
"group": "build", | ||
"label": "Watch using Vite dev mode", | ||
"detail": "vite" | ||
}, | ||
{ | ||
"type": "npm", | ||
"script": "deploy", | ||
"label": "Deploy", | ||
"detail": "Deploys the page to GitHub Pages of this repository.", | ||
"icon": { | ||
"id": "github-inverted", | ||
"color": "terminal.ansiRed" | ||
}, | ||
"problemMatcher": [], | ||
"presentation": { | ||
"echo": true, | ||
"reveal": "always", | ||
"focus": false, | ||
"panel": "dedicated", | ||
"showReuseMessage": true, | ||
"clear": true | ||
} | ||
}, | ||
{ | ||
"type": "npm", | ||
"script": "preview", | ||
"group": "build", | ||
"icon": { | ||
"id": "preview", | ||
"color": "terminal.ansiGreen" | ||
}, | ||
"problemMatcher": [ | ||
"$tsc" | ||
], | ||
"label": "Preview production", | ||
"detail": "Perform Vite production build and then preview it." | ||
}, | ||
{ | ||
"type": "npm", | ||
"script": "lint:eslint", | ||
"problemMatcher": [ | ||
"$eslint-compact" | ||
], | ||
"label": "npm: lint:eslint", | ||
"detail": "eslint . --fix" | ||
} | ||
] | ||
} | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "npm", | ||
"script": "build", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"icon": { | ||
"id": "tools", | ||
"color": "terminal.ansiGreen" | ||
}, | ||
"problemMatcher": ["$tsc"], | ||
"label": "Build", | ||
"detail": "Builds the project for production" | ||
}, | ||
{ | ||
"type": "npm", | ||
"script": "dev", | ||
"problemMatcher": ["$tsc-watch"], | ||
"icon": { | ||
"id": "eye-watch", | ||
"color": "terminal.ansiCyan" | ||
}, | ||
"group": "build", | ||
"label": "Watch using Vite dev mode", | ||
"detail": "vite" | ||
}, | ||
{ | ||
"type": "npm", | ||
"script": "deploy", | ||
"label": "Deploy", | ||
"detail": "Deploys the page to GitHub Pages of this repository.", | ||
"icon": { | ||
"id": "github-inverted", | ||
"color": "terminal.ansiRed" | ||
}, | ||
"problemMatcher": [], | ||
"presentation": { | ||
"echo": true, | ||
"reveal": "always", | ||
"focus": false, | ||
"panel": "dedicated", | ||
"showReuseMessage": true, | ||
"clear": true | ||
} | ||
}, | ||
{ | ||
"type": "npm", | ||
"script": "preview", | ||
"group": "build", | ||
"icon": { | ||
"id": "preview", | ||
"color": "terminal.ansiGreen" | ||
}, | ||
"problemMatcher": ["$tsc"], | ||
"label": "Preview production", | ||
"detail": "Perform Vite production build and then preview it." | ||
}, | ||
{ | ||
"type": "npm", | ||
"script": "lint:eslint", | ||
"problemMatcher": ["$eslint-compact"], | ||
"label": "npm: lint:eslint", | ||
"detail": "eslint . --fix" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,23 @@ | ||
{ | ||
"version": "0.2", | ||
"allowCompoundWords": true, | ||
"useGitignore": true, | ||
"ignorePaths": [ | ||
"**/tsconfig.json" | ||
], | ||
"dictionaryDefinitions": [ | ||
{ | ||
"name": "custom-dictionary", | ||
"path": "./.cspell/custom-dictionary.txt", | ||
"addWords": true | ||
}, | ||
{ | ||
"name": "field-names-dictionary", | ||
"path": "./.cspell/field-names-dictionary.txt", | ||
"addWords": true, | ||
"description": "This dictionary is used for map service field names." | ||
} | ||
], | ||
"dictionaries": [ | ||
"custom-dictionary", | ||
"field-names-dictionary" | ||
], | ||
"words": [], | ||
"ignoreWords": [], | ||
"import": [] | ||
"version": "0.2", | ||
"allowCompoundWords": true, | ||
"useGitignore": true, | ||
"ignorePaths": ["**/tsconfig.json"], | ||
"dictionaryDefinitions": [ | ||
{ | ||
"name": "custom-dictionary", | ||
"path": "./.cspell/custom-dictionary.txt", | ||
"addWords": true | ||
}, | ||
{ | ||
"name": "field-names-dictionary", | ||
"path": "./.cspell/field-names-dictionary.txt", | ||
"addWords": true, | ||
"description": "This dictionary is used for map service field names." | ||
} | ||
], | ||
"dictionaries": ["custom-dictionary", "field-names-dictionary"], | ||
"words": [], | ||
"ignoreWords": [], | ||
"import": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"> | ||
<link rel="shortcut icon" href="./favicon.svg" type="text/xml+svg"> | ||
<meta charset="utf-8" /> | ||
<meta | ||
name="viewport" | ||
content="initial-scale=1, maximum-scale=1, user-scalable=no" | ||
/> | ||
<link rel="shortcut icon" href="./favicon.svg" type="text/xml+svg" /> | ||
<title>👷♂️Add your title here!👷♀️</title> | ||
</head> | ||
<body> | ||
<div id="viewDiv"></div> | ||
<script type="module" src="/src/main.ts"></script> | ||
<div id="viewDiv"></div> | ||
<script type="module" src="/src/main.ts"></script> | ||
</body> | ||
</html> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[ | ||
["LDNM", "Township Subdivision"], | ||
["JURLBL", "County"], | ||
["CityName", "City"] | ||
] | ||
["LDNM", "Township Subdivision"], | ||
["JURLBL", "County"], | ||
["CityName", "City"] | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.