Compare commits
No commits in common. "main" and "1.0.0" have entirely different histories.
15 changed files with 1404 additions and 416 deletions
11
.github/dependabot.yml
vendored
11
.github/dependabot.yml
vendored
|
@ -1,11 +0,0 @@
|
|||
# To get started with Dependabot version updates, you'll need to specify which
|
||||
# package ecosystems to update and where the package manifests are located.
|
||||
# Please see the documentation for all configuration options:
|
||||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "npm" # See documentation for possible values
|
||||
directory: "/" # Location of package manifests
|
||||
schedule:
|
||||
interval: "weekly"
|
26
.github/workflows/npm-publish.yml
vendored
26
.github/workflows/npm-publish.yml
vendored
|
@ -1,26 +0,0 @@
|
|||
name: Publish to NPM
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
jobs:
|
||||
Publish-NPM:
|
||||
runs-on: node1
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: '16.x'
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
scope: '@thundernetworkrad'
|
||||
- name: Install Dependencies
|
||||
run: npm i
|
||||
- name: Build
|
||||
run: npm run build
|
||||
- name: Publish package on NPM 📦
|
||||
run: npm publish --access public
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
REGISTRY1: 'registry.npmjs.org'
|
||||
REGISTRY2: 'registry=https://registry.npmjs.org/'
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,3 +1,3 @@
|
|||
node_modules
|
||||
package-lock.json
|
||||
build
|
||||
|
||||
|
|
2
.npmrc
2
.npmrc
|
@ -1,2 +0,0 @@
|
|||
//${REGISTRY1}/:_authToken=${NODE_AUTH_TOKEN}
|
||||
${REGISTRY2}
|
15
README.md
Normal file
15
README.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
# database
|
||||
A quick-deploy database server
|
||||
|
||||
installation:
|
||||
- download the code from [here]()
|
||||
- change the password in password.js (it need to be an array)
|
||||
- for start do npm start
|
||||
|
||||
Save data in in ./data/database.json
|
||||
|
||||
This is the link:
|
||||
ip://api/<auth-code>/database to get all db
|
||||
ip://api/<auth-code>/database/<name> search name in the database
|
||||
ip://api/<auth-code>/database/<name>/set/<value> set a name's value in the database
|
||||
ip://api/<auth-code>/database/<name>/remove remove <name> in the database
|
13
SECURITY.md
13
SECURITY.md
|
@ -1,13 +0,0 @@
|
|||
# Security Policy
|
||||
|
||||
## Supported Versions
|
||||
|
||||
| Version | Supported |
|
||||
| ---------- | ------------------ |
|
||||
| 2023.02.06 | ✅ |
|
||||
| 2023.02.05 | ✅ |
|
||||
| < 2023.02 | ❌ |
|
||||
|
||||
## Reporting a Vulnerability
|
||||
|
||||
For report a vulnerability pls go [Here](https://github.com/ThunderNetworkRaD/mit.db/issues), open a new issue.
|
4
config.js
Normal file
4
config.js
Normal file
|
@ -0,0 +1,4 @@
|
|||
var settings = require('./settings.js')
|
||||
module.exports = {
|
||||
settings
|
||||
}
|
148
index.js
Normal file
148
index.js
Normal file
|
@ -0,0 +1,148 @@
|
|||
var client = [];
|
||||
client.config = require('./config.js').settings;
|
||||
|
||||
const MapDB = require('quickmap.db');
|
||||
const db = new MapDB('database.json');
|
||||
|
||||
const chalk = require('chalk')
|
||||
|
||||
function catchError(message, err, origin, reason) {
|
||||
console.log(chalk.gray('—————————————————————————————————'));
|
||||
console.log(
|
||||
chalk.white('['),
|
||||
chalk.red.bold('AntiCrash'),
|
||||
chalk.white(']'),
|
||||
chalk.gray(' : '),
|
||||
chalk.white.bold(message),
|
||||
);
|
||||
console.log(chalk.gray('—————————————————————————————————'));
|
||||
console.log(err, origin, reason);
|
||||
}
|
||||
|
||||
process.on('unhandledRejection', (err, origin) => {
|
||||
catchError('Unhandled Rejection/Catch', err, origin);
|
||||
});
|
||||
process.on('uncaughtException', (err, origin) => {
|
||||
catchError('Uncaught Exception/Catch', err, origin);
|
||||
});
|
||||
process.on('multipleResolves', (type, promise, reason) => {
|
||||
catchError('Multiple Resolves', type, promise, reason);
|
||||
});
|
||||
|
||||
async function setup() {
|
||||
var isset = await db.get('client.issetupped')
|
||||
if (!isset) {
|
||||
await db.set('client.issetupped', true)
|
||||
}
|
||||
}
|
||||
|
||||
setup()
|
||||
var fs = require('fs');
|
||||
var data = fs.readFileSync('./data/database.json');
|
||||
|
||||
var elements = JSON.parse(data);
|
||||
const express = require("express");
|
||||
const app = express();
|
||||
|
||||
const cors=require('cors');
|
||||
|
||||
app.listen(client.config.port,
|
||||
() => console.log("Server Start at the port "+client.config.port));
|
||||
|
||||
app.use(express.static('public'));
|
||||
app.use(cors());
|
||||
|
||||
async function authenticate(token, response, what) {
|
||||
if (!client.config.auth.includes(token)) {
|
||||
response.send('ERROR - Not auth')
|
||||
} else {
|
||||
console.log(token + ' do '+ what)
|
||||
}
|
||||
}
|
||||
|
||||
// All dates in the database
|
||||
|
||||
app.get('/api/:auth/database', alldata);
|
||||
|
||||
function alldata(request, response) {
|
||||
var token = request.params.auth;
|
||||
authenticate(token, response, 'alldata')
|
||||
response.send(elements);
|
||||
}
|
||||
|
||||
// One element in the database
|
||||
|
||||
app.get('/api/:auth/database/:element/', searchElement);
|
||||
|
||||
async function searchElement(request, response) {
|
||||
var token = request.params.auth;
|
||||
var word = request.params.element;
|
||||
|
||||
search = 'search '+ word
|
||||
authenticate(token, response, search)
|
||||
|
||||
var elements = await db.get(word)
|
||||
// var elements = JSON.parse(elements);
|
||||
|
||||
if(elements) {
|
||||
var reply = elements
|
||||
} else {
|
||||
var reply = {
|
||||
status:"Not Found"
|
||||
}
|
||||
}
|
||||
|
||||
response.send(reply);
|
||||
}
|
||||
|
||||
// Set a db variable
|
||||
|
||||
app.get('/api/:auth/database/:element/set/:data', set);
|
||||
|
||||
async function set(request, response) {
|
||||
var token = request.params.auth;
|
||||
var element = request.params.element;
|
||||
var data = request.params.data;
|
||||
|
||||
set = 'set '+element+' to '+data
|
||||
authenticate(token, response, set)
|
||||
|
||||
await db.set(element, data)
|
||||
var res = await db.get(element)
|
||||
// var res = JSON.parse(res);
|
||||
if(res) {
|
||||
var reply = res;
|
||||
} else {
|
||||
var reply = {
|
||||
status:"404-Not Found"
|
||||
}
|
||||
}
|
||||
|
||||
response.send(reply);
|
||||
}
|
||||
|
||||
// Set a db variable
|
||||
|
||||
app.get('/api/:auth/database/:element/remove', remove);
|
||||
|
||||
async function remove(request, response) {
|
||||
var token = request.params.auth;
|
||||
var element = request.params.element;
|
||||
var data = request.params.data;
|
||||
|
||||
set = 'remove '+element
|
||||
authenticate(token, response, set)
|
||||
|
||||
await db.set(element, data)
|
||||
var res = await db.delete(element)
|
||||
// var res = JSON.parse(res);
|
||||
if(res) {
|
||||
var reply = res
|
||||
} else {
|
||||
var reply = {
|
||||
status:"Not Found"
|
||||
}
|
||||
}
|
||||
|
||||
response.send(reply);
|
||||
}
|
1209
package-lock.json
generated
Normal file
1209
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
35
package.json
35
package.json
|
@ -1,25 +1,30 @@
|
|||
{
|
||||
"name": "mit.db",
|
||||
"version": "2023.04.12",
|
||||
"description": "An easy and quick database",
|
||||
"main": "build/index.js",
|
||||
"types": "build/index.d.ts",
|
||||
"dependencies": {
|
||||
"chalk": "^4.1.2",
|
||||
"cors": "^2.8.5",
|
||||
"express": "^4.18.1",
|
||||
"fs": "^0.0.1-security",
|
||||
"quickmap.db": "^1.1.1"
|
||||
},
|
||||
"name": "database-server",
|
||||
"description": "A quick-deploy database server",
|
||||
"version": "1.0.0",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "tsc"
|
||||
"test": "npm start"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ThunderNetworkRaD/mit.db.git"
|
||||
"url": "git+https://github.com/FIUSdevelopment/database-server.git"
|
||||
},
|
||||
"author": "ThunderNetworkRaD | Killer Boss Original",
|
||||
"keywords": [
|
||||
"database",
|
||||
"online"
|
||||
],
|
||||
"author": "FIUS Development | Killer Boss Original",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/ThunderNetworkRaD/mit.db/issues"
|
||||
"url": "https://github.com/FIUSdevelopment/database-server/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ThunderNetworkRaD/mit.db#readme",
|
||||
"devDependencies": {
|
||||
"@types/node": "^18.14.0",
|
||||
"tslib": "^2.4.1",
|
||||
"typescript": "^5.0.3"
|
||||
}
|
||||
"homepage": "https://github.com/FIUSdevelopment/database-server#readme"
|
||||
}
|
||||
|
|
2
password.js
Normal file
2
password.js
Normal file
|
@ -0,0 +1,2 @@
|
|||
password = ['abaco2022']
|
||||
module.exports = password
|
97
readme.md
97
readme.md
|
@ -1,97 +0,0 @@
|
|||
# Mit.db
|
||||
|
||||
```js
|
||||
const MitDB = require('mit.db');
|
||||
const db = new MitDB('file.db'); // this is the save file's name + extension
|
||||
async function sample() {
|
||||
// assuming 'somekey' exists in the Map and has a value { cool: false }
|
||||
const data = db.get('somekey');
|
||||
// reassigning the 'cool' property a new value
|
||||
data.cool = true;
|
||||
await db.set('somekey', data);
|
||||
// now 'somekey' has a new value { cool: true }
|
||||
}
|
||||
```
|
||||
|
||||
### Docs
|
||||
|
||||
#### Installation
|
||||
|
||||
With **npm**:
|
||||
|
||||
`npm i mit.db`
|
||||
|
||||
|
||||
#### Setup
|
||||
|
||||
```js
|
||||
const MitDB = require('mit.db')
|
||||
const db = new MitDB('database.json') // this is the save file's name + extension
|
||||
```
|
||||
|
||||
#### set()
|
||||
|
||||
```js
|
||||
await db.set('ciao', 'hello')
|
||||
await db.set('arrivederci', 'bye')
|
||||
```
|
||||
|
||||
#### get()
|
||||
|
||||
```js
|
||||
var ansa = db.get('ciao') // ansa = hello
|
||||
```
|
||||
|
||||
#### has()
|
||||
|
||||
```js
|
||||
var asnb = db.has('arrivederci') // ansb = true
|
||||
```
|
||||
|
||||
#### entries()
|
||||
|
||||
```js
|
||||
var ansc = db.entries() // ansc = [ 'ciao', 'hello' ], [ 'arrivederci', 'bye' ] ]
|
||||
```
|
||||
|
||||
#### keys()
|
||||
|
||||
```js
|
||||
var ansd = db.keys() // ansd = [ 'ciao', 'arrivederci' ]
|
||||
```
|
||||
|
||||
#### values()
|
||||
|
||||
```js
|
||||
var anse = db.values() // anse = [ 'hello', 'bye' ]
|
||||
```
|
||||
|
||||
#### forEach()
|
||||
|
||||
```js
|
||||
db.forEach((value, key) => console.log(value, key)) // console.log = hello ciao
|
||||
// console.log = bye arrivederci
|
||||
```
|
||||
|
||||
#### delete()
|
||||
|
||||
```js
|
||||
// [{"key":"ciao","value":"hello"}, {"key":"arrivederci","value":"bye"}]
|
||||
await db.delete('ciao')
|
||||
// [{"key":"arrivederci","value":"bye"}]
|
||||
```
|
||||
|
||||
#### clear()
|
||||
|
||||
```js
|
||||
// [{"key":"ciao","value":"hello"}, {"key":"arrivederci","value":"bye"}]
|
||||
await db.delete('ciao')
|
||||
// []
|
||||
```
|
||||
|
||||
#### size()
|
||||
|
||||
```js
|
||||
// [{"key":"ciao","value":"hello"}, {"key":"arrivederci","value":"bye"}]
|
||||
var ansf = db.size() // size = 2
|
||||
```
|
5
settings.js
Normal file
5
settings.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
auth = require('./password.js')
|
||||
module.exports = {
|
||||
port: '10009', //database port
|
||||
auth
|
||||
}
|
146
src/index.ts
146
src/index.ts
|
@ -1,146 +0,0 @@
|
|||
import { promisify } from 'util';
|
||||
import * as fs from 'fs';
|
||||
|
||||
const writeDB = promisify(fs.writeFile);
|
||||
|
||||
class MitDB {
|
||||
readonly db;
|
||||
filename: string;
|
||||
options: any;
|
||||
dirname: string;
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @param filename If not set, MapDB will only use internal memory
|
||||
* @example 'file.db'
|
||||
* @param options Options to pass in the constructor
|
||||
* @param options.dirname where to put the database?
|
||||
*/
|
||||
constructor(filename: string, options?: { dirname: string }) {
|
||||
if (options && options.dirname) {
|
||||
this.dirname = options.dirname;
|
||||
} else {
|
||||
this.dirname = 'data';
|
||||
}
|
||||
|
||||
this.filename = filename;
|
||||
|
||||
if (!fs.existsSync(this.dirname)) fs.mkdirSync(this.dirname);
|
||||
|
||||
this.db = `./${this.dirname}/${this.filename}`;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param key
|
||||
* @param value
|
||||
*/
|
||||
async set(key: string | number, value: any) {
|
||||
try {
|
||||
const file = fs.readFileSync(this.db);
|
||||
const data: any[] = JSON.parse(file.toString());
|
||||
|
||||
const i = data.findIndex((pair: any) => pair.key == key);
|
||||
|
||||
!data[i] ? data.push({ key, value }) : data[i] = { key, value };
|
||||
|
||||
await writeDB(this.db, JSON.stringify(data));
|
||||
return data;
|
||||
} catch {
|
||||
await writeDB(this.db, `[${JSON.stringify({ key, value })}]`).then(() => {
|
||||
return JSON.parse(fs.readFileSync(this.db).toString());
|
||||
});
|
||||
}
|
||||
|
||||
return 'error'
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param key
|
||||
*/
|
||||
|
||||
get(key: string | number) {
|
||||
const file = fs.readFileSync(this.db);
|
||||
const data: any[] = JSON.parse(file.toString());
|
||||
|
||||
return data.find((pair: any) => pair.key == key)?.value || undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param key
|
||||
*/
|
||||
has(key: string | number) {
|
||||
const file = fs.readFileSync(this.db);
|
||||
const data: any[] = JSON.parse(file.toString());
|
||||
|
||||
return data.find((pair: any) => pair.key == key) ? true : false;
|
||||
}
|
||||
|
||||
entries() {
|
||||
const file = fs.readFileSync(this.db);
|
||||
const data: any[] = JSON.parse(file.toString());
|
||||
|
||||
return data.map((pair: any) => [pair.key, pair.value]);
|
||||
}
|
||||
|
||||
keys() {
|
||||
const file = fs.readFileSync(this.db);
|
||||
const data: any[] = JSON.parse(file.toString());
|
||||
|
||||
return data.map((pair: any) => pair.key);
|
||||
}
|
||||
|
||||
values() {
|
||||
const file = fs.readFileSync(this.db);
|
||||
const data: any[] = JSON.parse(file.toString());
|
||||
|
||||
return data.map((pair: any) => pair.value);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param callbackfilename
|
||||
*/
|
||||
forEach(callback: (value: any, key: any) => void) {
|
||||
const file = fs.readFileSync(this.db);
|
||||
const data: any[] = JSON.parse(file.toString());
|
||||
|
||||
data.forEach((pair: any) => callback(pair.value, pair.key));
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param key
|
||||
*/
|
||||
async delete(key: string | number) {
|
||||
try {
|
||||
const file = fs.readFileSync(this.db);
|
||||
const data: any[] = JSON.parse(file.toString());
|
||||
|
||||
const i = data.findIndex((pair: any) => pair.key == key);
|
||||
|
||||
if (data[i]) {
|
||||
data.splice(i, 1);
|
||||
await writeDB(this.db, JSON.stringify(data));
|
||||
|
||||
return true;
|
||||
}
|
||||
} catch {}
|
||||
return 'error';
|
||||
}
|
||||
|
||||
async clear() {
|
||||
await writeDB(this.db, JSON.stringify([])).catch(() => {});
|
||||
}
|
||||
|
||||
size() {
|
||||
const file = fs.readFileSync(this.db);
|
||||
const data: any[] = JSON.parse(file.toString());
|
||||
|
||||
return data.length;
|
||||
}
|
||||
}
|
||||
|
||||
export = MitDB;
|
105
tsconfig.json
105
tsconfig.json
|
@ -1,105 +0,0 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
/* Visit https://aka.ms/tsconfig to read more about this file */
|
||||
|
||||
/* Projects */
|
||||
"incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */
|
||||
// "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
|
||||
// "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */
|
||||
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */
|
||||
// "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
|
||||
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
|
||||
|
||||
/* Language and Environment */
|
||||
"target": "ESNext", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
|
||||
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
|
||||
// "jsx": "preserve", /* Specify what JSX code is generated. */
|
||||
// "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
|
||||
// "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
|
||||
// "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */
|
||||
// "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
|
||||
// "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */
|
||||
// "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */
|
||||
// "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
|
||||
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
|
||||
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
|
||||
|
||||
/* Modules */
|
||||
"module": "CommonJS", /* Specify what module code is generated. */
|
||||
"rootDir": "src", /* Specify the root folder within your source files. */
|
||||
"moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
|
||||
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
|
||||
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
|
||||
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
|
||||
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
|
||||
// "types": [], /* Specify type package names to be included without being referenced in a source file. */
|
||||
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
|
||||
// "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
|
||||
// "resolveJsonModule": true, /* Enable importing .json files. */
|
||||
// "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */
|
||||
|
||||
/* JavaScript Support */
|
||||
"allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
|
||||
"checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
|
||||
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
|
||||
|
||||
/* Emit */
|
||||
"declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
|
||||
"declarationMap": true, /* Create sourcemaps for d.ts files. */
|
||||
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
|
||||
"sourceMap": true, /* Create source map files for emitted JavaScript files. */
|
||||
// "outFile": "./build.js", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
|
||||
"outDir": "build", /* Specify an output folder for all emitted files. */
|
||||
"removeComments": true, /* Disable emitting comments. */
|
||||
// "noEmit": true, /* Disable emitting files from a compilation. */
|
||||
"importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
|
||||
// "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */
|
||||
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
|
||||
// "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
|
||||
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
|
||||
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
|
||||
// "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */
|
||||
// "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
|
||||
// "newLine": "crlf", /* Set the newline character for emitting files. */
|
||||
// "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */
|
||||
// "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */
|
||||
// "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
|
||||
// "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */
|
||||
"declarationDir": "build", /* Specify the output directory for generated declaration files. */
|
||||
// "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */
|
||||
|
||||
/* Interop Constraints */
|
||||
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
|
||||
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
|
||||
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
|
||||
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
|
||||
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
|
||||
|
||||
/* Type Checking */
|
||||
"strict": true, /* Enable all strict type-checking options. */
|
||||
"noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
|
||||
"strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
|
||||
"strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
|
||||
"strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */
|
||||
"strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
|
||||
"noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */
|
||||
"useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */
|
||||
"alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
|
||||
"noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
|
||||
"noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
|
||||
"exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
|
||||
"noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
|
||||
"noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
|
||||
"noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
|
||||
"noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
|
||||
"noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
|
||||
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
|
||||
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
|
||||
|
||||
/* Completeness */
|
||||
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
||||
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
||||
},
|
||||
// "include": [],
|
||||
"exclude": ["node_modules", "logs", "build", "d", "test.js"]
|
||||
}
|
Loading…
Reference in a new issue