Skip to content

Commit

Permalink
feat(ts): adds bare project (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
ygrishajev committed Mar 19, 2024
1 parent ad60edd commit 4deb224
Show file tree
Hide file tree
Showing 9 changed files with 2,910 additions and 0 deletions.
20 changes: 20 additions & 0 deletions ts/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"ignorePatterns": ["node_modules/", "build/", "umd/"],
"env": {
"node": true,
"es2021": true
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
{ "ignoreRestSiblings": true }
]
}
}
39 changes: 39 additions & 0 deletions ts/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# compiled output
/dist
/build
/node_modules

# Logs
logs
*.log
npm-debug.log*
pnpm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# OS
.DS_Store

# Tests
/coverage
/.nyc_output

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

.env.local
.env.*.local
1 change: 1 addition & 0 deletions ts/.husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ts/node_modules/.bin/lint-staged --cwd ts
4 changes: 4 additions & 0 deletions ts/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"singleQuote": true,
"trailingComma": "all"
}
Loading

0 comments on commit 4deb224

Please sign in to comment.