Skip to content

Commit 740ff64

Browse files
committed
init project
1 parent 6c67da7 commit 740ff64

File tree

5 files changed

+60
-0
lines changed

5 files changed

+60
-0
lines changed

session 6/BooksLibrary/.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# compiled output
2+
/dist
3+
/node_modules
4+
5+
# dotenv environment variables file
6+
.env

session 6/BooksLibrary/package-lock.json

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "bookslibrary",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "src/index.ts",
6+
"scripts": {
7+
"build": "tsc",
8+
"start": "tsc && ts-node --files ./src/index.ts"
9+
},
10+
"author": "akash jadhav",
11+
"license": "ISC"
12+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log('Hello World');
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"compilerOptions": {
3+
"declaration": true,
4+
"experimentalDecorators": true,
5+
"emitDecoratorMetadata": true,
6+
"module": "commonjs",
7+
"esModuleInterop": true,
8+
"target": "es6",
9+
"listFiles": true,
10+
"noImplicitAny": false,
11+
"moduleResolution": "node",
12+
"sourceMap": true,
13+
"noEmitHelpers": false,
14+
"alwaysStrict": true,
15+
"suppressImplicitAnyIndexErrors": false,
16+
"forceConsistentCasingInFileNames": true,
17+
"resolveJsonModule": true,
18+
"outDir": "dist/",
19+
"diagnostics": true,
20+
"baseUrl": ".",
21+
"paths": {
22+
"*": ["node_modules/*"]
23+
},
24+
"typeRoots": ["@types", "node_modules/@types"]
25+
},
26+
"include": ["src/**/*"],
27+
"exclude": ["node_modules"]
28+
}

0 commit comments

Comments
 (0)