Skip to content

Instantly share code, notes, and snippets.

View kidwen's full-sized avatar
🕸️
finding...

kidwen kidwen

🕸️
finding...
View GitHub Profile
@kidwen
kidwen / Microsoft.PowerShell_profile.ps1
Last active July 19, 2021 15:59
powershell set proxy
$env:HTTP_PROXY="http://127.0.0.1:7890"
$env:HTTPS_PROXY="http://127.0.0.1:7890"
@kidwen
kidwen / tsconfig.json
Last active July 19, 2021 15:57
ts config file in angular
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"module": "esnext",
@kidwen
kidwen / visualstudio2019Key.txt
Created December 24, 2020 16:42
Visual Studio 2019 Product Key
Visual Studio 2019 Product Key
[Please Star this gist]
Follow My GitHub Account --> https://github.com/ch-kashif @ch-kashif
**Follow Me On Instagram -->> https://www.instagram.com/ch.kashif602/ **
Lets do a code together
Join Cloud Disk repository --> https://github.com/ch-kashif/CloudDisk
const path = require('path');
module.exports = {
// entry 表示入口,Webpack 执行构建的第一步将从 Entry 开始,可抽象成输入
// 类型可以是 string、object、array
entry: './app/entry', // 只有 1 个入口,入口只有 1 个文件
entry: ['./app/entry1', './app/entry2'], // 只有 1 个入口,入口有两个文件
entry: { // 有两个入口
a: './app/entry-a',
b: ['./app/entry-b1', './app/entry-b2']
},