Skip to content

Commit

Permalink
feat: setup absolute path
Browse files Browse the repository at this point in the history
  • Loading branch information
Chandraprakash-Darji committed Feb 24, 2023
1 parent f526164 commit ba4d29d
Show file tree
Hide file tree
Showing 39 changed files with 7,936 additions and 88 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ module.exports = {
// Lib and hooks
['^@/lib', '^@/hooks'],
// static data
['^@/data'],
['^@/content'],
// components
['^@/components', '^@/container'],
// zustand store
Expand Down
7 changes: 7 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,10 @@ yarn-error.log*

# changelog
CHANGELOG.md

# git
.git
.github

# Deploy
kubernetes
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@
"source.fixAll": true
},
"headwind.runOnSave": false,
"typescript.preferences.importModuleSpecifier": "non-relative"
"typescript.preferences.importModuleSpecifier": "non-relative",
"javascript.preferences.importModuleSpecifier": "non-relative",
"typescript.validate.enable": false,
"javascript.validate.enable": false
}
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@

<p align="center">
<img src="https://user-images.githubusercontent.com/114678694/208736801-03fbace3-5b00-42b9-8dfe-db18dcc13714.png" height="180" >
</p>

<h1 align= "center" id="logo"><a><img src="https://user-images.githubusercontent.com/114678694/208736801-03fbace3-5b00-42b9-8dfe-db18dcc13714.png" height="40" style="vertical-align:middle;padding:0px 8px 10px 0px" alt="logo" />We Make Devs</a></h1>

###
###

<div align="center">
<a href="https://github.com/commclassroom/commclassroom/issues"><img alt="GitHub issues" src="https://img.shields.io/github/issues/commclassroom/commclassroom"></a>
Expand All @@ -26,7 +25,6 @@ We Make Devs provides <b>courses</b> with hands-on-training ,mentorship for free

## What we provide?


<p align="center">
<img src="SkewdImage/wemakedevs.drawio.png" width="520" height="390" >
</p>
Expand Down Expand Up @@ -92,4 +90,3 @@ Before starting out, you'll need to install the following on your computer.
## Thanks to all the contributors ❤️

<img src="https://contrib.rocks/image?repo=WeMakeDevs/wemakedevs"/>

12 changes: 12 additions & 0 deletions craco.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const path = require('path');

module.exports = {
webpack: {
eslint: {
enable: false,
},
alias: {
'@': path.resolve(__dirname, 'src'),
},
},
};
11 changes: 8 additions & 3 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
{
"compilerOptions": {
"baseUrl": "src",
"module": "commonjs",
"target": "es2016",
"jsx": "preserve",
"checkJs": true,
"baseUrl": "./src/",
"paths": {
"*": ["src/*"]
"@/*": ["./*"]
}
}
},
"exclude": ["node_modules", "**/node_modules/*"]
}
Loading

0 comments on commit ba4d29d

Please sign in to comment.