Skip to content

Commit

Permalink
Merge branch 'main' into typescript-prog
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishak798 committed Apr 7, 2024
2 parents 5f105c1 + a64931a commit 0e56756
Show file tree
Hide file tree
Showing 3 changed files with 88 additions and 0 deletions.
71 changes: 71 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
# Web Development Repository 👩‍💻⭐

Welcome to the Web Development Repository! 🌐

## Introduction

This repository is a comprehensive resource hub for web developers, encompassing a wide array of web development projects, code samples, and tools. Whether you're a seasoned developer or just starting your web development journey, you'll find a wealth of materials here to assist you in learning, building, and contributing to web development projects.

## Features

- **Diverse Projects**: Explore a variety of web development projects, including front-end and back-end applications, responsive design examples, content management systems, and more.

- **Code Samples**: Access code snippets and examples for various web development technologies, such as HTML, CSS, JavaScript, and popular frameworks like React, Angular, and Vue.

- **Tech Stack**: Our projects and examples cover a wide range of technologies and frameworks, including:

- Front-end:
- HTML
- CSS
- JavaScript
- React
- Angular
- Vue.js
- Back-end:
- Node.js
- Express
- Django
- Ruby on Rails
- PHP
- Databases:
- MySQL
- PostgreSQL
- MongoDB
- SQLite
- Deployment and Hosting:
- Heroku
- Netlify
- AWS
- Firebase
- GitHub Pages
- DevOps:
- Docker
- Kubernetes
- Jenkins
- Travis CI

- **Documentation**: Many of our projects include detailed documentation and usage instructions, facilitating your understanding of the codebase.

- **Community Contributions**: We actively encourage contributions from the web development community. If you have web development projects or code snippets to share, please refer to our [Contribution Guidelines](CONTRIBUTING.md) for information on how to contribute.

## Getting Started

1. Clone this repository to your local machine to access web development projects and code samples.
2. Navigate through the directories to find web development projects and code examples that align with your interests.
3. Review the README files within each project for specific setup and usage instructions.

## Contribution Guidelines

We value contributions from the web development community! If you have web development code, projects, or tools you'd like to contribute, follow our [Contribution Guidelines](CONTRIBUTING.md) to get started.

## Support and Feedback

If you have questions, encounter issues, or wish to provide feedback on any of the web development projects or code samples in this repository, please don't hesitate to [open an issue](https://github.com/your-username/web-development-repo/issues). We are here to assist you and value your input.

## License

This repository is open-source and licensed under the [MIT License](LICENSE), granting you the freedom to use, modify, and distribute the code for your web development projects. Remember to provide appropriate attribution when reusing code from this repository.

## Acknowledgments

We extend our appreciation to the web development community and all contributors for their valuable contributions to this repository. Together, we are building a valuable resource hub for web developers worldwide. Happy coding and web development! 🌐🚀
2 changes: 2 additions & 0 deletions Typescript-practice/src/hello-world.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
console.log("helloworld");

let age: number = 20;

15 changes: 15 additions & 0 deletions Typescript-practice/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
/* Modules */
"module": "commonjs", /* Specify what module code is generated. */

"rootDir": "./src", /* Specify the root folder within your source files. */

"rootDir": "./", /* Specify the root folder within your source files. */
// "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
Expand All @@ -47,11 +50,19 @@
// "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */

"sourceMap": true, /* Create source map files for emitted JavaScript files. */
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
"outDir": "./dist", /* Specify an output folder for all emitted files. */
"removeComments": true, /* Disable emitting comments. */

// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
// "outDir": "./", /* Specify an output folder for all emitted files. */
// "removeComments": true, /* Disable emitting comments. */

// "noEmit": true, /* Disable emitting files from a compilation. */
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
// "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */
Expand All @@ -63,7 +74,11 @@
// "newLine": "crlf", /* Set the newline character for emitting files. */
// "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */
// "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */

"noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */

// "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */

// "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */
// "declarationDir": "./", /* Specify the output directory for generated declaration files. */
// "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */
Expand Down

0 comments on commit 0e56756

Please sign in to comment.