chore: remove useless config files

This commit is contained in:
Birame Sene 2024-12-29 12:26:48 +01:00 committed by Peter Kofler
parent d4514e6c9f
commit 5bf4f639e7
5 changed files with 1 additions and 50 deletions

3
deno/.gitignore vendored
View File

@ -7,5 +7,4 @@ app/**/*.js.map
test/**/*.js test/**/*.js
test/**/*.js.map test/**/*.js.map
coverage coverage
.nyc_output .nycrc.js*
package-lock.json

View File

@ -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"
}

View File

@ -1,17 +0,0 @@
module.exports = {
extension: [
".ts"
],
exclude: [
"**/*.d.ts",
"test/**",
"/*.js"
],
require: [
"ts-node/register"
],
reporter: [
"html",
"text"
]
}

0
deno/texttest_rig.py Normal file → Executable file
View File

View File

@ -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"
]
}