somewhat working project initialization
This commit is contained in:
22
backend/storage/src/startercode.ts
Normal file
22
backend/storage/src/startercode.ts
Normal 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;
|
Reference in New Issue
Block a user