From 2da2993fb2fce99d8c54a3a14af6882f5f858b96 Mon Sep 17 00:00:00 2001 From: Zechariah Date: Mon, 28 Mar 2022 03:27:21 +0800 Subject: [PATCH] Updated project config --- .npmignore | 3 +-- .vscode/launch.json | 28 ---------------------------- .vscode/settings.json | 22 ---------------------- babel.config.js | 6 ------ 4 files changed, 1 insertion(+), 58 deletions(-) delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/settings.json delete mode 100644 babel.config.js diff --git a/.npmignore b/.npmignore index 32d7a6f..fb4a11e 100644 --- a/.npmignore +++ b/.npmignore @@ -3,5 +3,4 @@ .gitignore .prettierrc .editorconfig -tsconfig.json -babel.config.js \ No newline at end of file +tsconfig.json \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 7ab51bd..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "type": "node", - "request": "launch", - "name": "testing/run.ts", - "program": "${workspaceFolder}/src/testing/run.ts", - "sourceMaps": true, - "skipFiles": ["/**"], - "runtimeExecutable": "node", - "runtimeArgs": ["--require", "ts-node/register/files"] - }, - { - "type": "node", - "request": "launch", - "name": "tests/all.ts", - "program": "${workspaceFolder}/src/tests/all.ts", - "sourceMaps": true, - "skipFiles": ["/**"], - "runtimeExecutable": "node", - "runtimeArgs": ["--require", "ts-node/register/files"] - } - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 9346d46..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "files.exclude": { - "**/.git": true, - "**/.svn": true, - "**/.hg": true, - "**/CVS": true, - "**/.DS_Store": true, - "**/Thumbs.db": true, - "**/.project": true, - "**/.vscode": true, - "**/*.cs.meta": true, - "**/android": true, - "**/ios": true, - "**/node_modules": false, - "**/__pycache__": true, - "**/babel.config.js": true, - "**/metro.config.js": true, - "**/.prettierrc": true, - "**/.editorconfig": true - }, - "explorerExclude.backup": null -} \ No newline at end of file diff --git a/babel.config.js b/babel.config.js deleted file mode 100644 index c2efad2..0000000 --- a/babel.config.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = { - presets: [ - ["@babel/preset-env", { targets: { node: "current" } }], - "@babel/preset-typescript" - ] -} \ No newline at end of file