From 42ff039376d19d6994fe3fb9465d802a2eec2136 Mon Sep 17 00:00:00 2001 From: permaficus Date: Wed, 12 Jun 2024 22:58:22 +0700 Subject: [PATCH] stashing ? --- .gitignore | 4 ++++ tsconfig.json | 19 +++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .gitignore create mode 100644 tsconfig.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8bb4027 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +node_modules +pub +vupd.js +.npmignore \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..d7156fa --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + /* Language and Environment */ + "target": "ES2015", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ + /* Modules */ + "module": "CommonJS", /* Specify what module code is generated. */ + "rootDir": "./", /* Specify the root folder within your source files. */ + /* JavaScript Support */ + /*"allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */ + "outDir": "pub", /* Specify an output folder for all emitted files. */ + "esModuleInterop": true, + "noEmit": false, + "moduleResolution": "Node10", + "declaration": true, + "declarationMap": true, + "resolveJsonModule": true + }, + "exclude": ["node_modules", "pub", " tsconfig.json", "enmav.config.ts", "vupd.js"] +} \ No newline at end of file