Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# :file_folder: fill-upload-preprocessor Pull Request

## Task List

<!-- 개조식으로 어떤 작업을 수행했는지 작성 -->
<br>

## Remarks

<!-- 이번 MR과 관련된 내용들을 자유롭게 작성 -->
<br>

## Related Issue

<!-- 이번 MR과 관련있는 github issue가 있는 경우 링크 연결 -->
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"test": "jest --watchAll --verbose --coverage",
"test:ci": "jest",
"build": "webpack --mode production"
"build": "webpack --mode production && tsc"
},
"repository": {
"type": "git",
Expand Down
13 changes: 6 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,18 @@
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"allowJs": true,
"noEmit": true,
"skipLibCheck": true,
"esModuleInterop": true,
"outDir": "",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": false,
"sourceMap": true,
"emitDeclarationOnly":true,
"sourceMap": false,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"lib": ["esnext", "es5", "dom", "dom.iterable", "es2015"]
"lib": ["esnext", "es5", "dom", "dom.iterable", "es2015"],
"declaration": true,
"outDir": "dist"
},
"include": ["src/**/*.ts", "src/**/*.d.ts"],
"exclude": ["node_modules", "dist"]
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const buildPoint = path.join(__dirname, "dist");
const aliasPoint = path.join(__dirname, "src");

module.exports = {
name: "eat-today",
name: "file-upload-preprocessor",
mode,
entry: entryPoint,
module: {
Expand Down