This repository has been archived by the owner on Jun 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
4,380 additions
and
1,156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
{ | ||
// IntelliSense를 사용하여 가능한 특성에 대해 알아보세요. | ||
// 기존 특성에 대한 설명을 보려면 가리킵니다. | ||
// 자세한 내용을 보려면 https://go.microsoft.com/fwlink/?linkid=830387을(를) 방문하세요. | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Launch Node", | ||
"program": "${file}", | ||
"skipFiles": [ | ||
"<node_internals>/**" | ||
], | ||
"outFiles": [ | ||
"${workspaceFolder}/dist/node/**/*.js" | ||
], | ||
"preLaunchTask": "npm: build-node" | ||
}, | ||
{ | ||
"type": "firefox", | ||
"request": "launch", | ||
"reAttach": true, | ||
"name": "Launch Firefox localhost", | ||
"url": "http://localhost/index.html", | ||
"webRoot": "${workspaceFolder}", | ||
"preLaunchTask": "npm: build-web-dev" | ||
}, | ||
{ | ||
"type": "firefox", | ||
"request": "launch", | ||
"reAttach": true, | ||
"name": "Launch Firefox index.html", | ||
"file": "${file}", | ||
"preLaunchTask": "npm: build-web-dev" | ||
}, | ||
{ | ||
"name": "Launch Edge", | ||
"request": "launch", | ||
"type": "pwa-msedge", | ||
"url": "http://localhost:8080", | ||
"webRoot": "${workspaceFolder}", | ||
"preLaunchTask": "npm: build-web-dev" | ||
}, | ||
{ | ||
"name": "Launch Deno", | ||
"type": "pwa-node", | ||
"request": "launch", | ||
"cwd": "${workspaceFolder}", | ||
"runtimeExecutable": "deno", | ||
"runtimeArgs": [ | ||
"run", | ||
"--inspect-brk", | ||
"--allow-all", | ||
"${file}" | ||
], | ||
"attachSimplePort": 9229 | ||
}, | ||
{ | ||
"type": "pwa-chrome", | ||
"request": "launch", | ||
"name": "Launch Chrome against localhost", | ||
"url": "http://localhost:8080", | ||
"webRoot": "${workspaceFolder}", | ||
"preLaunchTask": "npm: build-web-dev" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"deno.unstable": false, | ||
"deno.enable": true, | ||
"deno.lint": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "npm", | ||
"script": "build", | ||
"group": "build", | ||
"problemMatcher": [], | ||
"label": "npm: build", | ||
"detail": "(npm run lint && (tsc & tsc -p tsconfig-commonjs.json)) & webpack" | ||
}, | ||
{ | ||
"type": "npm", | ||
"script": "build-ecma", | ||
"group": "build", | ||
"problemMatcher": [], | ||
"label": "npm: build-ecma", | ||
"detail": "npm run lint && tsc" | ||
}, | ||
{ | ||
"type": "npm", | ||
"script": "build-web-dev", | ||
"group": "build", | ||
"problemMatcher": [], | ||
"label": "npm: build-web-dev", | ||
"detail": "webpack --mode development" | ||
}, | ||
{ | ||
"type": "npm", | ||
"script": "build-web", | ||
"group": "build", | ||
"problemMatcher": [], | ||
"label": "npm: build-web", | ||
"detail": "webpack" | ||
}, | ||
{ | ||
"type": "npm", | ||
"script": "build-node", | ||
"group": "build", | ||
"problemMatcher": [], | ||
"label": "npm: build-node", | ||
"detail": "npm run lint && tsc -p tsconfig-commonjs.json" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"presets": [ | ||
"@babel/preset-typescript" | ||
], | ||
"plugins": [ | ||
["babel-plugin-replace-import-extension", { | ||
"extMapping": { | ||
".ts": ".js" | ||
} | ||
}] | ||
] | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"presets": [ | ||
["@babel/preset-env", { | ||
"targets": "maintained node versions" | ||
}], | ||
"@babel/preset-typescript" | ||
], | ||
"plugins": [ | ||
["babel-plugin-replace-import-extension", { | ||
"extMapping": { | ||
".ts": ".js" | ||
} | ||
}] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.