Skip to content

Commit be95062

Browse files
authored
Merge pull request #97 from ModusCreateOrg/ADE-66
[ADE-66] fixes, refactors, and adding icons to processing and viewing reports
2 parents 3956426 + 8fa8d7e commit be95062

28 files changed

+329
-212
lines changed

backend/.eslintrc.js

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
module.exports = {
22
parser: '@typescript-eslint/parser',
33
parserOptions: {
4-
project: 'tsconfig.json',
4+
projectService: true, // Changed from project: 'tsconfig.json'
55
sourceType: 'module',
66
},
77
plugins: ['@typescript-eslint/eslint-plugin', 'prettier'],
8-
extends: [
9-
'plugin:@typescript-eslint/recommended',
10-
'plugin:prettier/recommended',
11-
],
8+
extends: ['plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended'],
129
root: true,
1310
env: {
1411
node: true,
@@ -22,4 +19,4 @@ module.exports = {
2219
'@typescript-eslint/explicit-module-boundary-types': 'off',
2320
'@typescript-eslint/no-explicit-any': 'off',
2421
},
25-
};
22+
};

backend/tsconfig.json

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,7 @@
22
"compilerOptions": {
33
"target": "ES2021",
44
"module": "commonjs",
5-
"lib": [
6-
"dom",
7-
"dom.iterable",
8-
"es2020",
9-
"esnext"
10-
],
5+
"lib": ["dom", "dom.iterable", "es2020", "esnext"],
116
"allowJs": true,
127
"skipLibCheck": true,
138
"esModuleInterop": true,
@@ -26,10 +21,7 @@
2621
"inlineSources": true,
2722
"experimentalDecorators": true,
2823
"strictPropertyInitialization": false,
29-
"typeRoots": [
30-
"./node_modules/@types",
31-
"./src/types"
32-
],
24+
"typeRoots": ["./node_modules/@types", "./src/types"],
3325
"moduleResolution": "node",
3426
"resolveJsonModule": true,
3527
"isolatedModules": true,
@@ -43,11 +35,6 @@
4335
"incremental": true,
4436
"strictBindCallApply": true
4537
},
46-
"include": [
47-
"src"
48-
],
49-
"exclude": [
50-
"node_modules",
51-
"cdk.out"
52-
]
38+
"include": ["src"],
39+
"exclude": ["node_modules", "cdk.out"]
5340
}
Lines changed: 29 additions & 0 deletions
Loading

frontend/src/assets/icons/ai.svg

Lines changed: 12 additions & 0 deletions
Loading
Lines changed: 7 additions & 0 deletions
Loading
Lines changed: 6 additions & 0 deletions
Loading

frontend/src/assets/icons/bulb.svg

Lines changed: 6 additions & 0 deletions
Loading
Lines changed: 6 additions & 0 deletions
Loading
Lines changed: 13 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)