diff --git a/deno/.gitignore b/deno/.gitignore index 566b078b..b052625b 100644 --- a/deno/.gitignore +++ b/deno/.gitignore @@ -7,5 +7,4 @@ app/**/*.js.map test/**/*.js test/**/*.js.map coverage -.nyc_output -package-lock.json +.nycrc.js* diff --git a/deno/.mocharc.js b/deno/.mocharc.js deleted file mode 100644 index 9ae39f77..00000000 --- a/deno/.mocharc.js +++ /dev/null @@ -1,11 +0,0 @@ -"use strict"; - -module.exports = { - require: [ - "ts-node/register", - "tsconfig-paths/register", - "source-map-support/register" - ], - recursive: true, - spec: "test/mocha/*.spec.ts" -} diff --git a/deno/.nycrc.js b/deno/.nycrc.js deleted file mode 100644 index 3b19d56e..00000000 --- a/deno/.nycrc.js +++ /dev/null @@ -1,17 +0,0 @@ -module.exports = { - extension: [ - ".ts" - ], - exclude: [ - "**/*.d.ts", - "test/**", - "/*.js" - ], - require: [ - "ts-node/register" - ], - reporter: [ - "html", - "text" - ] -} diff --git a/deno/texttest_rig.py b/deno/texttest_rig.py old mode 100644 new mode 100755 diff --git a/deno/tsconfig.json b/deno/tsconfig.json deleted file mode 100644 index d2922795..00000000 --- a/deno/tsconfig.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "compilerOptions": { - "module": "commonjs", - "target": "es5", - "strict": true, - "noImplicitAny": false, - "sourceMap": true, - "baseUrl": "./", - "resolveJsonModule": true, - "esModuleInterop": true, - "paths": { - "@/*": [ - "app/*" - ] - } - }, - "exclude": [ - "node_modules" - ] -}