moahmedwafy commited on
Commit
a148744
·
1 Parent(s): 39354c1

restore json files

Browse files
Files changed (2) hide show
  1. .vscode/settings.json +7 -3
  2. tsconfig.json +20 -3
.vscode/settings.json CHANGED
@@ -1,3 +1,7 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:5c0b48dacfac50e9a6b2846ef0f936609e17fc5f673d9651c5f3dc27fc672141
3
- size 83
 
 
 
 
 
1
+ {
2
+ "cSpell.words": [
3
+ "IJSON",
4
+ "Routable",
5
+ "tlds"
6
+ ]
7
+ }
tsconfig.json CHANGED
@@ -1,3 +1,20 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:1aa3fd89d57313ed62ac6a94eca451b6b2067bbef63bbd89738130a61d2d79f5
3
- size 445
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "include": ["src/**/*.ts"],
3
+ "compilerOptions": {
4
+ "module": "commonjs",
5
+ "esModuleInterop": true,
6
+ "target": "es6",
7
+ "moduleResolution": "node",
8
+ "sourceMap": true,
9
+ "outDir": "dist",
10
+ "experimentalDecorators": true,
11
+ "baseUrl": "./src",
12
+ "paths": {
13
+ "@lib/*": ["lib/*"],
14
+ "@common/*": ["common/*"],
15
+ "@configs/*": ["configs/*"],
16
+ "@helpers/*": ["helpers/*"]
17
+ }
18
+ },
19
+ "lib": ["es2015"]
20
+ }