@@ -0,0 +1,11 @@
+**/.git
+**/.github
+**/node_modules
+**/projects
+**/docs
+**/tsconfig.*.json
+**/tsconfig.json
+
+.prettierrc
+package.json
+README.md
@@ -0,0 +1,17 @@
+{
+ "semi": true,
+ "singleQuote": true,
+ "trailingComma": "es5",
+ "useTabs": false,
+ "tabWidth": 2,
+ "arrowParens": "always",
+ "printWidth": 80,
+ "overrides": [
+ {
+ "files": ["*.mts", "*.cts", "*.ts"],
+ "options": {
+ "parser": "typescript"
+ }
+ ]
+}