Skip to content

Commit 4a74471

Browse files
committed
first push of app
1 parent 5deb406 commit 4a74471

File tree

131 files changed

+298068
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+298068
-0
lines changed

.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Editor configuration, see https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.ts]
12+
quote_type = single
13+
14+
[*.md]
15+
max_line_length = off
16+
trim_trailing_whitespace = false

.gitignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# Compiled output
4+
# /dist
5+
/tmp
6+
/out-tsc
7+
/bazel-out
8+
9+
# Node
10+
/node_modules
11+
npm-debug.log
12+
yarn-error.log
13+
14+
# IDEs and editors
15+
.idea/
16+
.project
17+
.classpath
18+
.c9/
19+
*.launch
20+
.settings/
21+
*.sublime-workspace
22+
23+
# Visual Studio Code
24+
.vscode/*
25+
!.vscode/settings.json
26+
!.vscode/tasks.json
27+
!.vscode/launch.json
28+
!.vscode/extensions.json
29+
.history/*
30+
31+
# Miscellaneous
32+
/.angular/cache
33+
.sass-cache/
34+
/connect.lock
35+
/coverage
36+
/libpeerconnection.log
37+
testem.log
38+
/typings
39+
40+
# System files
41+
.DS_Store
42+
Thumbs.db

angular.json

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"webshark": {
7+
"projectType": "application",
8+
"schematics": {
9+
"@schematics/angular:component": {
10+
"style": "scss"
11+
}
12+
},
13+
"root": "",
14+
"sourceRoot": "src",
15+
"prefix": "app",
16+
"architect": {
17+
"build": {
18+
"builder": "@angular-devkit/build-angular:browser",
19+
"options": {
20+
"outputPath": "dist/webshark",
21+
"index": "src/index.html",
22+
"main": "src/main.ts",
23+
"polyfills": [
24+
"zone.js"
25+
],
26+
"tsConfig": "tsconfig.app.json",
27+
"inlineStyleLanguage": "scss",
28+
"assets": [
29+
"src/favicon.ico",
30+
"src/assets",
31+
"src/ffmpeg",
32+
"src/wiregasm-lib"
33+
34+
],
35+
"styles": [
36+
"@angular/material/prebuilt-themes/indigo-pink.css",
37+
"src/styles.scss"
38+
],
39+
"scripts": [
40+
"src/enable-threads.js",
41+
"src/ffmpeg/ffmpeg.min.js",
42+
"src/ffmpeg-init.js",
43+
"src/wiregasm-lib/wiregasm.js",
44+
"src/wiregasm-lib/pako.js"
45+
],
46+
"webWorkerTsConfig": "tsconfig.worker.json"
47+
},
48+
"configurations": {
49+
"production": {
50+
"optimization": false,
51+
"sourceMap": true,
52+
"namedChunks": false,
53+
"aot": false,
54+
"extractLicenses": false,
55+
"vendorChunk": false,
56+
"buildOptimizer": false,
57+
"budgets": [
58+
{
59+
"type": "initial",
60+
"maximumWarning": "5500kb",
61+
"maximumError": "10mb"
62+
},
63+
{
64+
"type": "anyComponentStyle",
65+
"maximumWarning": "20kb",
66+
"maximumError": "100kb"
67+
}
68+
],
69+
"outputHashing": "all"
70+
},
71+
"kiosk": {
72+
"budgets": [
73+
{
74+
"type": "initial",
75+
"maximumWarning": "5500kb",
76+
"maximumError": "10mb"
77+
},
78+
{
79+
"type": "anyComponentStyle",
80+
"maximumWarning": "20kb",
81+
"maximumError": "100kb"
82+
}
83+
],
84+
"outputHashing": "all",
85+
"fileReplacements": [
86+
{
87+
"replace": "src/environments/environment.ts",
88+
"with": "src/environments/environment.kiosk.ts"
89+
}
90+
]
91+
}
92+
},
93+
"defaultConfiguration": "production"
94+
},
95+
"serve": {
96+
"builder": "@angular-devkit/build-angular:dev-server",
97+
"configurations": {
98+
"production": {
99+
"browserTarget": "webshark:build:production"
100+
},
101+
"kiosk": {
102+
"browserTarget": "webshark:build:kiosk"
103+
}
104+
},
105+
"defaultConfiguration": "production"
106+
},
107+
"extract-i18n": {
108+
"builder": "@angular-devkit/build-angular:extract-i18n",
109+
"options": {
110+
"browserTarget": "webshark:build"
111+
}
112+
},
113+
"test": {
114+
"builder": "@angular-devkit/build-angular:karma",
115+
"options": {
116+
"polyfills": [
117+
"zone.js",
118+
"zone.js/testing"
119+
],
120+
"tsConfig": "tsconfig.spec.json",
121+
"inlineStyleLanguage": "scss",
122+
"assets": [
123+
"src/favicon.ico",
124+
"src/assets"
125+
],
126+
"styles": [
127+
"@angular/material/prebuilt-themes/indigo-pink.css",
128+
"src/styles.scss"
129+
],
130+
"scripts": [],
131+
"webWorkerTsConfig": "tsconfig.worker.json"
132+
}
133+
}
134+
}
135+
}
136+
},
137+
"cli": {
138+
"analytics": "62c37ccd-5abf-43c9-b55d-6eac0b7d97f7"
139+
}
140+
}

0 commit comments

Comments
 (0)