somewhat working project initialization

This commit is contained in:
Ishaan Dey
2024-04-23 17:46:51 -04:00
parent ffee1b60c7
commit 75ac23094b
13 changed files with 177 additions and 17 deletions

View File

@ -0,0 +1,22 @@
const startercode = {
node: [
{ name: 'index.js', body: `console.log("Hello World!")` },
{
name: 'package.json',
body: `{
"name": "nodejs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^18.0.6"
}
}`,
},
],
};
export default startercode;