Skip to content

Commit ce6c7da

Browse files
committed
Initial commit
0 parents  commit ce6c7da

File tree

14 files changed

+3175
-0
lines changed

14 files changed

+3175
-0
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Editor configuration, see http://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+
[*.md]
12+
max_line_length = off
13+
trim_trailing_whitespace = false

.gitignore

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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+
8+
# dependencies
9+
node_modules
10+
11+
# IDEs and editors
12+
/.idea
13+
.project
14+
.classpath
15+
.c9/
16+
*.launch
17+
.settings/
18+
*.sublime-workspace
19+
20+
# IDE - VSCode
21+
.vscode/*
22+
!.vscode/settings.json
23+
!.vscode/tasks.json
24+
!.vscode/launch.json
25+
!.vscode/extensions.json
26+
27+
# misc
28+
/.sass-cache
29+
/connect.lock
30+
/coverage
31+
/libpeerconnection.log
32+
npm-debug.log
33+
yarn-error.log
34+
testem.log
35+
/typings
36+
37+
# System Files
38+
.DS_Store
39+
Thumbs.db

.prettierignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Add files here to ignore them from prettier formatting
2+
3+
/dist
4+
/coverage

.prettierrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"singleQuote": true
3+
}

.vscode/extensions.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"recommendations": [
3+
4+
"nrwl.angular-console",
5+
"esbenp.prettier-vscode"
6+
]
7+
}

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# AngularThree
2+
3+
<a alt="Nx logo" href="https://nx.dev" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-logo.png" width="45"></a>
4+
5+
**This workspace has been generated by [Nx, a Smart, fast and extensible build system.](https://nx.dev)**
6+
7+
## Understand this workspace
8+
9+
Run `nx graph` to see a diagram of the dependencies of the projects.
10+
11+
## Remote caching
12+
13+
Run `npx nx connect-to-nx-cloud` to enable [remote caching](https://nx.app) and make CI faster.
14+
15+
## Further help
16+
17+
Visit the [Nx Documentation](https://nx.dev) to learn more.

apps/.gitkeep

Whitespace-only changes.

libs/.gitkeep

Whitespace-only changes.

nx.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"$schema": "./node_modules/nx/schemas/nx-schema.json",
3+
"npmScope": "angular-three",
4+
"tasksRunnerOptions": {
5+
"default": {
6+
"runner": "nx/tasks-runners/default",
7+
"options": {
8+
"cacheableOperations": [
9+
"build",
10+
"lint",
11+
"test",
12+
"e2e"
13+
]
14+
}
15+
}
16+
},
17+
"targetDefaults": {
18+
"build": {
19+
"dependsOn": [
20+
"^build"
21+
],
22+
"inputs": [
23+
"production",
24+
"^production"
25+
]
26+
}
27+
},
28+
"namedInputs": {
29+
"default": [
30+
"{projectRoot}/**/*",
31+
"sharedGlobals"
32+
],
33+
"production": [
34+
"default"
35+
],
36+
"sharedGlobals": []
37+
}
38+
}

0 commit comments

Comments
 (0)