Skip to content

Commit

Permalink
update systems
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Kusumgar committed Nov 15, 2024
1 parent 6fccbb0 commit 5443cda
Show file tree
Hide file tree
Showing 41 changed files with 3,962 additions and 11,139 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
/app/static/dist/
/app/static/tmp/
/app/static/test-results
/logs/*
47 changes: 0 additions & 47 deletions app/server/.eslintrc.js

This file was deleted.

7 changes: 0 additions & 7 deletions app/server/README.md

This file was deleted.

22 changes: 22 additions & 0 deletions app/server/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// @ts-check

import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';

export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{
files: ["**/tests/**"],
rules: {
"@typescript-eslint/no-explicit-any": "off"
}
},
{
ignores: [
'**/dist/**',
'**/coverage/**',
'**/public/**'
]
}
);
1 change: 1 addition & 0 deletions app/server/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
declare module "zoo-ids";
8 changes: 0 additions & 8 deletions app/server/jest.config.integration.js

This file was deleted.

8 changes: 0 additions & 8 deletions app/server/jest.config.js

This file was deleted.

5 changes: 5 additions & 0 deletions app/server/nodemon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"execMap": {
"ts": "ts-node --project tsconfig.node.json"
}
}
Loading

0 comments on commit 5443cda

Please sign in to comment.