File tree 5 files changed +9
-24
lines changed
5 files changed +9
-24
lines changed Original file line number Diff line number Diff line change 41
41
]
42
42
}
43
43
]
44
- // TODO: see if we want to keep any of these rules
45
- // "@typescript-eslint/semi": [
46
- // 2,
47
- // "always"
48
- // ],
49
- // "@typescript-eslint/member-delimiter-style": "off",
50
- // "@typescript-eslint/space-before-function-paren": "off",
51
- // "@typescript-eslint/no-invalid-void-type": "off",
52
- // "@typescript-eslint/consistent-type-imports": "off",
53
- // "@typescript-eslint/strict-boolean-expressions": "off",
54
- // "@typescript-eslint/dot-notation": "off",
55
- // "@typescript-eslint/indent": "off"
56
44
},
57
45
"overrides" : [
58
46
{
Original file line number Diff line number Diff line change 1
1
** /* .json
2
2
** /* .yaml
3
3
** /* .yml
4
- ** /* .code-workspace
5
- ** /* .code-snippets
4
+ ** /* .code- *
6
5
** /* .md
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codeforlife" ,
3
- "version" : " 1.27.7" ,
4
- "private" : true ,
5
3
"description" : " Common frontend code" ,
6
- "main" : " ./lib/cjs/index.js" ,
7
- "module" : " ./lib/esm/index.js" ,
8
- "types" : " ./lib/esm/index.d.ts" ,
9
- "files" : [
10
- " /lib"
11
- ],
4
+ "private" : true ,
5
+ "version" : " 1.27.7" ,
6
+ "type" : " module" ,
12
7
"scripts" : {
13
8
"dev" : " vite" ,
14
9
"start" : " serve -s dist" ,
Original file line number Diff line number Diff line change 1
1
export const SERVICE_NAME = import . meta. env . VITE_SERVICE_NAME ?? "REPLACE_ME"
2
- export const API_BASE_URL = import . meta. env . VITE_API_BASE_URL ?? "http://localhost:8000/api/"
3
- export const PORTAL_BASE_URL = import . meta. env . VITE_PORTAL_BASE_URL ?? "http://localhost:3000"
2
+ export const API_BASE_URL =
3
+ import . meta. env . VITE_API_BASE_URL ?? "http://localhost:8000/api/"
4
+ export const PORTAL_BASE_URL =
5
+ import . meta. env . VITE_PORTAL_BASE_URL ?? "http://localhost:3000"
Original file line number Diff line number Diff line change
1
+ /// <reference types="vite/client" />
You can’t perform that action at this time.
0 commit comments