From 0b17105b77d439267d8f58db1d885188137ec094 Mon Sep 17 00:00:00 2001 From: lewix Date: Sun, 21 Jul 2024 18:52:48 +0200 Subject: [PATCH] package config updated --- .gitignore | 2 ++ .vscode/launch.json | 12 +++++++++++ tsconfig.json | 3 ++- yarn.lock | 52 --------------------------------------------- 4 files changed, 16 insertions(+), 53 deletions(-) create mode 100644 .vscode/launch.json delete mode 100644 yarn.lock diff --git a/.gitignore b/.gitignore index e6603d2..a9d2ba9 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,5 @@ node_modules *.js *.map .DS_Store +package-lock.json +yarn.lock diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..533d94c --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,12 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "node", + "request": "launch", + "name": "Launch Program", + "skipFiles": ["/**"], + "program": "${workspaceFolder}/example.js" + } + ] + } \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 32feae6..c419842 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,7 @@ "compilerOptions": { "target": "es5", "module": "commonjs", - "sourceMap": true + "sourceMap": true, + "lib": ["es2015", "dom"], } } \ No newline at end of file diff --git a/yarn.lock b/yarn.lock deleted file mode 100644 index 015f1d0..0000000 --- a/yarn.lock +++ /dev/null @@ -1,52 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@types/buffers@^0.1.34": - version "0.1.34" - resolved "https://registry.npmjs.org/@types/buffers/-/buffers-0.1.34.tgz" - integrity sha512-QJnoyXYLO5TdxsFLE0q7xdCMEE1t7+ThQQFIoDdCDpr1rk+rUz9u0v3C70Qry0l0D5UezqkjIFJqJumg+NOpmA== - dependencies: - "@types/node" "*" - -"@types/node@*": - version "20.10.5" - resolved "https://registry.npmjs.org/@types/node/-/node-20.10.5.tgz" - integrity sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw== - dependencies: - undici-types "~5.26.4" - -bindings@^1.1.0: - version "1.5.0" - resolved "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz" - integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== - dependencies: - file-uri-to-path "1.0.0" - -events@^3.3.0: - version "3.3.0" - resolved "https://registry.npmjs.org/events/-/events-3.3.0.tgz" - integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== - -file-uri-to-path@1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz" - integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== - -nan@^2.14.0: - version "2.18.0" - resolved "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz" - integrity sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w== - -pcsclite@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/pcsclite/-/pcsclite-1.0.1.tgz" - integrity sha512-KffeR9V+Q0ERHsOp2Ys4K81XEkRSFfn/G6Nbfieq2BPbP90KnMFFClKLgJ/hKmCddxUdpcu3OVVSY+tTy5FXRw== - dependencies: - bindings "^1.1.0" - nan "^2.14.0" - -undici-types@~5.26.4: - version "5.26.5" - resolved "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz" - integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==