This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"type": "npm", | |
"script": "dev-react", | |
"problemMatcher": [ | |
"$tsc-watch" | |
], | |
"label": "npm: dev-react", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/package.json b/package.json | |
index 3bb8620..f6b1b47 100644 | |
--- a/package.json | |
+++ b/package.json | |
@@ -4,6 +4,8 @@ | |
"scripts": { | |
"ng": "ng", | |
"start": "ng serve", | |
+ "dev-node": "ts-node-dev --project tsconfig.server.json src/server/", | |
+ "dev-ng": "ng serve --proxy-config proxy.conf.json --open", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"projects": { | |
"hug-moms": { | |
"root": "", | |
"sourceRoot": "src", | |
"projectType": "application", | |
"prefix": "app", | |
"schematics": { | |
"@schematics/angular:component": { | |
"style": "scss", | |
"skipTests": true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"type": "npm", | |
"script": "dev-ng", | |
"problemMatcher": [ | |
"$tsc-watch" | |
], | |
"label": "npm: dev-ng", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using ENV.Data; | |
using ENV.Data.DataProvider; | |
using Firefly.Box.Data.Advanced; | |
using Firefly.Box.Data.DataProvider; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.CodeDom.Compiler; | |
using System.Collections.Generic; | |
using System.Globalization; | |
using System.IO; | |
using System.Text; | |
using ENV.Data; | |
using ENV.Data.DataProvider; | |
using Firefly.Box.Data.Advanced; | |
using Firefly.Box.Data.DataProvider; |
NewerOlder