Skip to content

Commit 64a0bff

Browse files
committed
feat: initial commit
0 parents  commit 64a0bff

8 files changed

+24369
-0
lines changed

.editorconfig

+16
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 = 4
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

+42
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

.npmrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
//registry.npmjs.org/:_authToken=${NPM_TOKEN}
2+
registry=https://registry.npmjs.org/
3+
always-auth=true

angular.json

+109
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"projects": {
5+
"devel": {
6+
"projectType": "application",
7+
"schematics": {
8+
"@schematics/angular:component": {
9+
"style": "scss"
10+
},
11+
"@schematics/angular:application": {
12+
"strict": true
13+
}
14+
},
15+
"root": "",
16+
"sourceRoot": "src",
17+
"prefix": "app",
18+
"architect": {
19+
"build": {
20+
"builder": "@angular-devkit/build-angular:application",
21+
"options": {
22+
"outputPath": "dist/stackedit",
23+
"index": "src/index.html",
24+
"browser": "src/main.ts",
25+
"polyfills": [
26+
"zone.js"
27+
],
28+
"tsConfig": "tsconfig.app.json",
29+
"inlineStyleLanguage": "scss",
30+
"preserveSymlinks": true,
31+
"sourceMap": true,
32+
"assets": [
33+
"src/manifest.webmanifest"
34+
],
35+
"styles": [
36+
"src/styles/styles.scss"
37+
]
38+
},
39+
"configurations": {
40+
"production": {
41+
"budgets": [
42+
{
43+
"type": "initial",
44+
"maximumWarning": "500kb",
45+
"maximumError": "10mb"
46+
},
47+
{
48+
"type": "anyComponentStyle",
49+
"maximumWarning": "2kb",
50+
"maximumError": "2mb"
51+
}
52+
],
53+
"outputHashing": "all",
54+
"sourceMap": true
55+
},
56+
"development": {
57+
"optimization": false,
58+
"extractLicenses": false,
59+
"sourceMap": true,
60+
"preserveSymlinks": true
61+
}
62+
},
63+
"defaultConfiguration": "production"
64+
},
65+
"serve": {
66+
"builder": "@angular-devkit/build-angular:dev-server",
67+
"configurations": {
68+
"production": {
69+
"buildTarget": "devel:build:production"
70+
},
71+
"development": {
72+
"buildTarget": "devel:build:development"
73+
}
74+
},
75+
"defaultConfiguration": "development"
76+
},
77+
"extract-i18n": {
78+
"builder": "@angular-devkit/build-angular:extract-i18n",
79+
"options": {
80+
"buildTarget": "devel:build"
81+
}
82+
}
83+
}
84+
},
85+
"package": {
86+
"projectType": "library",
87+
"root": "",
88+
"sourceRoot": "src",
89+
"prefix": "lib",
90+
"architect": {
91+
"build": {
92+
"builder": "@angular-devkit/build-angular:ng-packagr",
93+
"options": {
94+
"project": "src/ng-package.json"
95+
},
96+
"configurations": {
97+
"production": {
98+
"tsConfig": "src/tsconfig.lib.prod.json"
99+
},
100+
"development": {
101+
"tsConfig": "src/tsconfig.lib.json"
102+
}
103+
},
104+
"defaultConfiguration": "production"
105+
}
106+
}
107+
}
108+
}
109+
}

0 commit comments

Comments
 (0)