chore: split Github Actions workflows

This commit is contained in:
Harttle
2023-06-05 23:32:35 +08:00
committed by Jun Yang
parent 495bef2d0c
commit e401a30972
21 changed files with 304 additions and 108 deletions
+5
View File
@@ -1,11 +1,16 @@
{
"extends": ["../.eslintrc.json"],
"env": {
"mocha": true
},
"plugins": [
"mocha"
],
"parserOptions": {
"project": "test/tsconfig.json"
},
"rules": {
"deprecation/deprecation": "off",
"@typescript-eslint/no-var-requires": "off",
"no-unused-expressions": "off",
"no-new": "off"
+17
View File
@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "es6",
"module":"CommonJS",
"lib": ["es2015", "es2016", "es2017", "dom"],
"sourceMap": true,
"outDir": "dist",
"declaration": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"downlevelIteration": true,
"strict": true,
"suppressImplicitAnyIndexErrors": true
},
"all": true
}