Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit d210cc4

Browse files
committed
job detail page
1 parent 63dfa02 commit d210cc4

File tree

43 files changed

+3270
-256
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+3270
-256
lines changed

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
10.22.1

babel.config.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,12 @@
3737
"plugins": [
3838
["module-resolver", {
3939
"alias": {
40-
"styles": "/src/styles",
40+
"styles": "./src/styles",
4141
"components": "./src/components",
4242
"hooks": "./src/hooks",
4343
"utils": "./src/utils",
44-
"constants": "./src/constants"
44+
"constants": "./src/constants",
45+
"services": "./src/services"
4546
}
4647
}]
4748
]

config/development.js

+5
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,9 @@ module.exports = {
1313
* URL of Topcoder Community Website
1414
*/
1515
TOPCODER_COMMUNITY_WEBSITE_URL: "https://topcoder-dev.com",
16+
17+
/**
18+
* Email to report issues to
19+
*/
20+
EMAIL_REPORT_ISSUE: "[email protected]",
1621
};

config/production.js

+5
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,9 @@ module.exports = {
1313
* URL of Topcoder Community Website
1414
*/
1515
TOPCODER_COMMUNITY_WEBSITE_URL: "https://topcoder.com",
16+
17+
/**
18+
* Email to report issues to
19+
*/
20+
EMAIL_REPORT_ISSUE: "[email protected]",
1621
};

jsconfig.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es2017",
4+
"baseUrl": ".",
5+
"moduleResolution": "node",
6+
"paths": {
7+
"styles/*": ["./src/styles/*"],
8+
"components/*": ["./src/components/*"],
9+
"hooks/*": ["./src/hooks/*"],
10+
"utils/*": ["./src/utils/*"],
11+
"constants/*": ["./src/constants/*"],
12+
"services/*": ["./src/services/*"]
13+
}
14+
},
15+
"exclude": ["node_modules", "dist"]
16+
}
12.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)