Skip to content

Commit

Permalink
initial attempt to ts re-write
Browse files Browse the repository at this point in the history
  • Loading branch information
vajahath committed Jan 28, 2018
1 parent 36842cc commit 6c77be7
Show file tree
Hide file tree
Showing 58 changed files with 2,949 additions and 1,237 deletions.
27 changes: 13 additions & 14 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# top-most EditorConfig file
root = true

[*]
charset = utf-8
end_of_line = crlf
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = tab
indent_size = 4

[*{.json,.yml}]
indent_style = space
indent_size = 2
# top-most EditorConfig file
root = true

insert_final_newline = true
tab_width = 4

[*.js]
indent_style = tab
indent_size = tab

[*.ts]
indent_style = tab
indent_size = tab
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

21 changes: 0 additions & 21 deletions .eslintrc.yml

This file was deleted.

81 changes: 41 additions & 40 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,40 +1,41 @@
.idea/
.vscode/

# Logs
logs
*.log
npm-debug.log*

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules
jspm_packages

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history
mocha-insights/
credentials/
dist/

# Logs
logs
*.log
npm-debug.log*

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules
jspm_packages

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history
19 changes: 0 additions & 19 deletions .jsbeautifyrc

This file was deleted.

30 changes: 19 additions & 11 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
media/
.jsbeautifyrc
.eslintrc.yml
.travis.yml
test.js
tests/
.vscode/
.editorconfig
.eslintignore
.gitignore
.idea/
.vscode/
accessories/
*.map
mocha-insights/
credentials/
media/
node_modules/
src/
tests/
typings/
.editorconfig
.eslintignore
.eslintrc.yml
.gitignore
.npmignore
.travis.yml
.yo-rc.json
tsconfig.json
tslint.json
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible Node.js debug attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [{
"type": "node",
"request": "launch",
"name": "Debug",
"program": "${workspaceRoot}/dist/index.js",
"smartStep": true,
"outFiles": [
"../dist/**/*.js"
],
"protocol": "inspector"
}]
}
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"cSpell.words": [
"sqlify"
]
}
10 changes: 10 additions & 0 deletions .yo-rc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"generator-ts-np": {
"promptValues": {
"githubUsername": "vajahath",
"email": "[email protected]",
"twitterUsername": "vajahath7",
"fullName": "Vajahath Ahmed"
}
}
}
Loading

0 comments on commit 6c77be7

Please sign in to comment.