Skip to content

Commit c07921a

Browse files
committed
Initial commit
0 parents  commit c07921a

115 files changed

Lines changed: 6591 additions & 0 deletions

File tree

Some content is hidden

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

.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

.postcssrc.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"plugins": {
3+
"@tailwindcss/postcss": {}
4+
}
5+
}

.prettierrc

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"tabWidth": 2,
3+
"useTabs": false,
4+
"singleQuote": true,
5+
"trailingComma": "none",
6+
"endOfLine": "lf",
7+
"arrowParens": "always",
8+
"printWidth": 120,
9+
"overrides": [
10+
{
11+
"files": ["src/**/*.html"],
12+
"options": {
13+
"parser": "angular"
14+
}
15+
}
16+
]
17+
}

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
3+
"recommendations": ["angular.ng-template"]
4+
}

.vscode/launch.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
3+
"version": "0.2.0",
4+
"configurations": [
5+
{
6+
"name": "ng serve",
7+
"type": "chrome",
8+
"request": "launch",
9+
"preLaunchTask": "npm: start",
10+
"url": "http://localhost:4200/"
11+
}
12+
]
13+
}

.vscode/settings.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"cSpell.words": ["maxlength", "openworkers"],
4+
"files.insertFinalNewline": true,
5+
"files.associations": {
6+
"*.css": "tailwindcss"
7+
},
8+
"tailwindCSS.includeLanguages": {
9+
"plaintext": "html"
10+
},
11+
"css.validate": false,
12+
"tailwindCSS.emmetCompletions": true,
13+
"editor.inlineSuggest.enabled": true,
14+
"editor.quickSuggestions": {
15+
"strings": true
16+
}
17+
}

.vscode/tasks.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
3+
"version": "2.0.0",
4+
"tasks": [
5+
{
6+
"type": "npm",
7+
"script": "start",
8+
"isBackground": true,
9+
"problemMatcher": {
10+
"owner": "typescript",
11+
"pattern": "$tsc",
12+
"background": {
13+
"activeOnStart": true,
14+
"beginsPattern": {
15+
"regexp": "(.*?)"
16+
},
17+
"endsPattern": {
18+
"regexp": "bundle generation complete"
19+
}
20+
}
21+
}
22+
}
23+
]
24+
}

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# App
2+
3+
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.2.6.
4+
5+
## Development server
6+
7+
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.
8+
9+
## Code scaffolding
10+
11+
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
12+
13+
## Build
14+
15+
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
16+
17+
## Further help
18+
19+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.

angular.json

Lines changed: 147 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"app": {
7+
"projectType": "application",
8+
"schematics": {
9+
"@schematics/angular:component": {
10+
"inlineTemplate": false,
11+
"skipTests": true,
12+
"style": "none"
13+
},
14+
"@schematics/angular:class": {
15+
"skipTests": true
16+
},
17+
"@schematics/angular:directive": {
18+
"skipTests": true
19+
},
20+
"@schematics/angular:guard": {
21+
"skipTests": true
22+
},
23+
"@schematics/angular:interceptor": {
24+
"skipTests": true
25+
},
26+
"@schematics/angular:pipe": {
27+
"skipTests": true
28+
},
29+
"@schematics/angular:resolver": {
30+
"skipTests": true
31+
},
32+
"@schematics/angular:service": {
33+
"skipTests": true
34+
}
35+
},
36+
"root": "",
37+
"sourceRoot": "src",
38+
"prefix": "app",
39+
"architect": {
40+
"build": {
41+
"builder": "@angular/build:application",
42+
"options": {
43+
"outputPath": {
44+
"base": "dist"
45+
},
46+
"index": "src/index.html",
47+
"polyfills": [],
48+
"tsConfig": "tsconfig.app.json",
49+
"inlineStyleLanguage": "css",
50+
"assets": [
51+
"src/assets",
52+
{
53+
"glob": "**/*.wasm",
54+
"input": "./node_modules/@openworkers/croner-wasm/dist",
55+
"output": "assets/wasm"
56+
},
57+
{
58+
"glob": "**/*",
59+
"input": "./node_modules/monaco-editor/min",
60+
"output": "assets/monaco-editor/min"
61+
},
62+
{
63+
"glob": "**/*",
64+
"input": "./node_modules/monaco-editor/min-maps",
65+
"output": "assets/monaco-editor/min-maps"
66+
},
67+
{
68+
"glob": "**/*",
69+
"input": "./node_modules/monaco-editor/min-maps",
70+
"output": "min-maps"
71+
}
72+
],
73+
"styles": ["src/styles.css"],
74+
"scripts": [],
75+
"browser": "src/main.ts"
76+
},
77+
"configurations": {
78+
"production": {
79+
"budgets": [
80+
{
81+
"type": "initial",
82+
"maximumWarning": "500kb",
83+
"maximumError": "1mb"
84+
},
85+
{
86+
"type": "anyComponentStyle",
87+
"maximumWarning": "2kb",
88+
"maximumError": "4kb"
89+
}
90+
],
91+
"fileReplacements": [
92+
{
93+
"replace": "src/environments/environment.ts",
94+
"with": "src/environments/environment.prod.ts"
95+
}
96+
],
97+
"outputHashing": "all",
98+
"assets": [
99+
"src/favicon.ico",
100+
"src/assets",
101+
{
102+
"glob": "**/*",
103+
"input": "./node_modules/monaco-editor/min",
104+
"output": "assets/monaco-editor/min"
105+
},
106+
{
107+
"glob": "**/*",
108+
"input": "./node_modules/monaco-editor/min-maps",
109+
"output": "assets/monaco-editor/min-maps"
110+
}
111+
]
112+
},
113+
"development": {
114+
"optimization": false,
115+
"extractLicenses": false,
116+
"sourceMap": true,
117+
"namedChunks": true
118+
}
119+
},
120+
"defaultConfiguration": "production"
121+
},
122+
"serve": {
123+
"builder": "@angular/build:dev-server",
124+
"configurations": {
125+
"production": {
126+
"buildTarget": "app:build:production"
127+
},
128+
"development": {
129+
"buildTarget": "app:build:development"
130+
}
131+
},
132+
"defaultConfiguration": "development"
133+
},
134+
"extract-i18n": {
135+
"builder": "@angular/build:extract-i18n",
136+
"options": {
137+
"buildTarget": "app:build"
138+
}
139+
}
140+
}
141+
}
142+
},
143+
"cli": {
144+
"analytics": false,
145+
"packageManager": "bun"
146+
}
147+
}

0 commit comments

Comments
 (0)