Spaces:
Running
Running
Commit
·
a148744
1
Parent(s):
39354c1
restore json files
Browse files- .vscode/settings.json +7 -3
- tsconfig.json +20 -3
.vscode/settings.json
CHANGED
|
@@ -1,3 +1,7 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"cSpell.words": [
|
| 3 |
+
"IJSON",
|
| 4 |
+
"Routable",
|
| 5 |
+
"tlds"
|
| 6 |
+
]
|
| 7 |
+
}
|
tsconfig.json
CHANGED
|
@@ -1,3 +1,20 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
}
|