create-sandi-ts-app 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2 @@
1
+ # copy this as .env
2
+ # .env files are set to be ignored by git. Only the sample file will be tracked.
@@ -0,0 +1,13 @@
1
+
2
+ module.exports = {
3
+ "ignorePatterns": ["dist"],
4
+ "extends": [
5
+ "sandi-ts",
6
+ ],
7
+ "rules": {
8
+ /* for heathens
9
+ "indent": ["warn", 2],
10
+ "semi": ["warn", "always"],
11
+ */
12
+ }
13
+ }
@@ -0,0 +1,3 @@
1
+ node_modules
2
+ dist
3
+ .env
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "sandi-ts-app",
3
+ "version": "0.1.0",
4
+ "author": "",
5
+ "license": "UNLICENSED",
6
+ "type": "module",
7
+ "scripts": {
8
+ "build": "tsc --watch"
9
+ },
10
+ "dependencies": {
11
+ "npm-run-all": "^4.1.5",
12
+ "rimraf": "^5.0.5"
13
+ },
14
+ "devDependencies": {
15
+ "@types/node": "^20.11.6",
16
+ "eslint": "^8.56.0",
17
+ "eslint-config-sandi-ts": "^0.1.5",
18
+ "typescript": "^5.3.3"
19
+ }
20
+ }