Compare commits

...

4 Commits

11 changed files with 19 additions and 18 deletions

View File

@@ -1,10 +1,11 @@
# TS Project (Template for TypeScript) # TS Project (Template for TypeScript)
- TypeScript - TypeScript
- TS Node Dev - TS Node Dev
- Husky - Husky
- Prettier - Prettier
- ESLint - ESLint
### Contributors ### Contributors
- Sambo Chea <sombochea@cubetiqs.com>
- Sambo Chea <sombochea@cubetiqs.com>

View File

@@ -5,7 +5,8 @@
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {
"start": "tsc -w", "start": "tsc -w",
"build": "rm -rf dist && tsc" "build": "rm -rf dist && tsc",
"prepare": "husky install"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -12,8 +12,7 @@
"lib": ["ES2015"], "lib": ["ES2015"],
"skipLibCheck": true, "skipLibCheck": true,
"allowJs": true, "allowJs": true,
"declaration": true, "declaration": true
"emitDeclarationOnly": false
}, },
"include": ["src/**/*"] "include": ["src/**/*"]
} }