Skip to content

Commit e02a91f

Browse files
committed
debugging support
1 parent 61527d6 commit e02a91f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+2771
-1269
lines changed

.eslintrc.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
module.exports = {
2+
parser: "@typescript-eslint/parser",
3+
parserOptions: {
4+
ecmaVersion: 2018,
5+
sourceType: "module",
6+
project: "./tsconfig.json"
7+
},
8+
env: {
9+
es6: true,
10+
node: true
11+
},
12+
extends: [
13+
"eslint:recommended",
14+
"plugin:@typescript-eslint/recommended",
15+
"plugin:@typescript-eslint/eslint-recommended",
16+
"prettier",
17+
"prettier/@typescript-eslint",
18+
"plugin:prettier/recommended"
19+
],
20+
plugins: ["@typescript-eslint"],
21+
rules: {
22+
"@typescript-eslint/no-explicit-any": 0,
23+
"@typescript-eslint/explicit-function-return-type": 0,
24+
"@typescript-eslint/no-unused-vars": 0
25+
}
26+
};

.prettierrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"singleQuote": false,
3+
"trailingComma": "es5",
4+
"printWidth": 120
5+
}

.vscodeignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.vscode/**
2+
.vscode-test/**
3+
typings/**
4+
out/test/**
5+
test/**
6+
# src/**
7+
# **/*.map
8+
.gitignore
9+
tsconfig.json

debug/index.ts

Lines changed: 0 additions & 96 deletions
This file was deleted.

0 commit comments

Comments
 (0)