Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thedevs-network/kutt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPouria Ezzati <ezzati.upt@gmail.com>2019-10-08 21:26:03 +0300
committerGitHub <noreply@github.com>2019-10-08 21:26:03 +0300
commit33320f0205eb0cca968ab3a593358daf352da295 (patch)
tree7716f11f33639b58b54dda936d0d582171425200 /tsconfig.json
parent1249bc99aedca42cacb7381b572c56a929a84ae4 (diff)
[v2-beta] Move from Neo4j to Postgres, use TypeScript for server. Fixes #217, #197, #190, #75 (#220)
* Disable underscore-dangle rule * Add mongoose package * Use mongodb for auth queries * Move to MongoDB and TypeScript * Init plan * Update steps * Update config * :boom: Move to Postgres from MongoDB * Remove unused * Improve migration scripts * Decrease concurrent connections * Add skip and fix query * Add migration guide * Increase cahr limit to 1023 * Decrease target limit to 1023 * Update migration guid with important note * Update example with new env vars * Update with v2 guides * Fix migrating visit referrers * Add script to delete duplicated visit relationship * Add shortUrl to link response for backward compatibility * Linting * Fix creating anonymous links * Fix IP cooldown not working * Fix deleting links by deleting visits of links first * Fix and improve links migration script * Add fail note to migration * 2.0.0 * Fix main path * Fix limit when getting list of links * Improve table nav buttons clicking and listing * Return countAll as number instead of string * Fix proptype warning * Fix not authenticating user on initial load. Fixes #71
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..a3ba588
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,23 @@
+{
+ "compileOnSave": false,
+ "compilerOptions": {
+ "allowJs": true,
+ "allowSyntheticDefaultImports": true,
+ "baseUrl": ".",
+ "jsx": "preserve",
+ "lib": ["dom", "es2017"],
+ "module": "esnext",
+ "moduleResolution": "node",
+ "noEmit": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "preserveConstEnums": true,
+ "removeComments": false,
+ "skipLibCheck": true,
+ "sourceMap": true,
+ "target": "esnext",
+ "typeRoots": ["./node_modules/@types"],
+ "emitDecoratorMetadata": true,
+ "experimentalDecorators": true
+ },
+} \ No newline at end of file