Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: folder structure #472

Merged
merged 9 commits into from
Dec 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"import/resolver": {
"typescript": {
"alwaysTryTypes": true,
"project": "packages/*/*/tsconfig.json"
"project": ["**/tsconfig.json"],
"projectFolderIgnoreList": ["**/node_modules/**"]
}
},
"wc": {
Expand Down
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
packages/classic-cloud/lib/* filter=crypt diff=crypt merge=crypt
cloud/classic/lib/* filter=crypt diff=crypt merge=crypt
*.env filter=crypt diff=crypt merge=crypt
20 changes: 10 additions & 10 deletions .github/workflows/publish-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:

push:
paths:
- 'packages/container/**'
- 'packages/service/**'
- 'cloud/container/**'
- 'services/**'
- '.github/workflows/publish-container.yml'
tags:
- 'v*.*.*'
Expand All @@ -18,8 +18,8 @@ on:

pull_request:
paths:
- 'packages/container/**'
- 'packages/service/**'
- 'cloud/container/**'
- 'services/**'
- '.github/workflows/publish-container.yml'

env:
Expand All @@ -37,35 +37,35 @@ jobs:
matrix:
include:
- image: alpine
path: container/alpine
path: cloud/container/alpine
description: A minimal Docker image based on Alpine Linux with a complete package index and only 5 MB in size!
version:
short: 3
full: 3.16

- image: nginx
path: container/nginx
path: cloud/container/nginx
description: High performance, optimized NGINX for server web applications and api proxy with fast cache.
version:
short: 1
full: 1.0.0-1.23-alpine

- image: storage-server
path: service/storage-server
path: services/storage-server
description: Storage nanoservice with disk backed, Fastest NoSQL Database.
version:
short: 0
full: 0.24.1

- image: comment
path: service/comment
path: services/comment
description: Distributed simple and fast comment nanoservice base on @alwatr/storage-server
version:
short: 0
full: 0.24.1

# - image: tdlib
# path: container/tdlib
# path: cloud/container/tdlib
# description: Cross-platform library for building Telegram clients.
# version:
# short: 1
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
id: build-and-push
uses: docker/build-push-action@v3
with:
context: packages/${{matrix.path}}
context: ${{matrix.path}}
push: ${{github.event_name != 'pull_request'}}
tags: ${{steps.meta.outputs.tags}}
labels: ${{steps.meta.outputs.labels}}
Expand Down
48 changes: 24 additions & 24 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

- **comment:** new types ([13a0fe9](https://github.com/AliMD/alwatr/commit/13a0fe97a1f9b65fafea893a198fdea4310ddd8d))
- **logger:** log incident in production mode ([c9b6c56](https://github.com/AliMD/alwatr/commit/c9b6c56182750444b1cced3343b02eea6a9f24c5))
- **service/commenting:** add base nano server ([705d7b9](https://github.com/AliMD/alwatr/commit/705d7b99c2cd7369d496051538f09de35660b2df))
- **service/commenting:** add route ([542cc52](https://github.com/AliMD/alwatr/commit/542cc529f42a9e524d0a8faa76de51011b12d655))
- **service/commenting:** get all route ([581cebe](https://github.com/AliMD/alwatr/commit/581cebe78840237619c820f4c45aa06b87672076))
- **service/commenting:** rename add to put route ([170af3b](https://github.com/AliMD/alwatr/commit/170af3b198347a6cbaa1f0454da9d74e15f43f4e))
- **service/commenting:** replyId ([5629a01](https://github.com/AliMD/alwatr/commit/5629a013916d479ea6816c76b0db4ff8befcdc7c))
- **services/commenting:** add base nano server ([705d7b9](https://github.com/AliMD/alwatr/commit/705d7b99c2cd7369d496051538f09de35660b2df))
- **services/commenting:** add route ([542cc52](https://github.com/AliMD/alwatr/commit/542cc529f42a9e524d0a8faa76de51011b12d655))
- **services/commenting:** get all route ([581cebe](https://github.com/AliMD/alwatr/commit/581cebe78840237619c820f4c45aa06b87672076))
- **services/commenting:** rename add to put route ([170af3b](https://github.com/AliMD/alwatr/commit/170af3b198347a6cbaa1f0454da9d74e15f43f4e))
- **services/commenting:** replyId ([5629a01](https://github.com/AliMD/alwatr/commit/5629a013916d479ea6816c76b0db4ff8befcdc7c))
- **storage-client:** dynamic storage name ([07cf5fb](https://github.com/AliMD/alwatr/commit/07cf5fb2086d1f8ad0f731470a5dfb313038b51c))
- **storage-client:** dynamic storage name ([2f0ca5b](https://github.com/AliMD/alwatr/commit/2f0ca5b85241c2298efc503e5f14f994a35be484))

Expand All @@ -29,7 +29,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

- **i18n:** setLocal type ([d801958](https://github.com/AliMD/alwatr/commit/d801958bcc130e93677a1efe2c0c2c6dc420b700))
- **logger:** optimize for browserify builds ([7afdc1c](https://github.com/AliMD/alwatr/commit/7afdc1cb5baf9b66dedcdc251595c02a79a163b2))
- **service/storage-server:** Dockerfile CMD ([1823e56](https://github.com/AliMD/alwatr/commit/1823e56229eccaba86325344011fb54804f66496))
- **services/storage-server:** Dockerfile CMD ([1823e56](https://github.com/AliMD/alwatr/commit/1823e56229eccaba86325344011fb54804f66496))
- **services:** dockerfile copy issue ([d2cf4bc](https://github.com/AliMD/alwatr/commit/d2cf4bccc0f5cdc034dbce9d17262d17b0df1198))
- **services:** dockerfile copy issue ([0fa5bba](https://github.com/AliMD/alwatr/commit/0fa5bba017124221cfcfe75ad9ac1ad402faedef))
- set correct dependencies in package.json and references in tsconfig.json ([1fb05a8](https://github.com/AliMD/alwatr/commit/1fb05a80e1e098f3334cf3b4bd9c9ebf0c75fbf8))
Expand All @@ -53,7 +53,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
- **nano-server:** use config for cors ([947dad9](https://github.com/AliMD/alwatr/commit/947dad9473d7408aad9a4640ffdd2157edae10c5))
- **publish-container:** prevent to build on any pr merged ([7f4296d](https://github.com/AliMD/alwatr/commit/7f4296d9ee1fb8697ea4a6f81937f4efc973ab10))
- remove \_updatedBy ([d8d5c83](https://github.com/AliMD/alwatr/commit/d8d5c83884bbd30566001ff84faf9e840503471c))
- **service/storage-server:** dockerfile syntaxt ([42ba235](https://github.com/AliMD/alwatr/commit/42ba235371de46f6ef9a0ea5554afa41fe9001fa))
- **services/storage-server:** dockerfile syntaxt ([42ba235](https://github.com/AliMD/alwatr/commit/42ba235371de46f6ef9a0ea5554afa41fe9001fa))
- **storage-engine:** generic get type ([a287362](https://github.com/AliMD/alwatr/commit/a2873624fe2fd8071944528dba2e0c1d4dd006cc))
- **storage-engine:** update types ([26bc0ae](https://github.com/AliMD/alwatr/commit/26bc0ae48b0b41cc2a9d18d3bb2883fafb447ede))
- **storage-engine:** util types ([41f97fd](https://github.com/AliMD/alwatr/commit/41f97fdbd4c902dc11b82b230a805bbf7b77ec81))
Expand All @@ -69,7 +69,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

### Features

- **service/storage-server:** dockerignore ([530d342](https://github.com/AliMD/alwatr/commit/530d342e6f9fcd5c9ec4638b1a714fb3ac08c083))
- **services/storage-server:** dockerignore ([530d342](https://github.com/AliMD/alwatr/commit/530d342e6f9fcd5c9ec4638b1a714fb3ac08c083))
- **storage-client:** use document object from fetch ([1ab7f5d](https://github.com/AliMD/alwatr/commit/1ab7f5da462975bc3b765663d9e3ff97c214a4e3))
- **storage-engine:** improve provider debug ([c9cfc8f](https://github.com/AliMD/alwatr/commit/c9cfc8f4914887d4861e67f5a39670a646e9900a))
- **storage-server:** dockerfile ([aa80d6e](https://github.com/AliMD/alwatr/commit/aa80d6ec431e3b62beb26dba0fcc220ad27aaaf0))
Expand Down Expand Up @@ -120,10 +120,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
- **nano-server:** set correct valitator type ([61d4a2a](https://github.com/AliMD/alwatr/commit/61d4a2a697e4beac00c94afcd86ca4cbc4b6c5a8))
- **ns/storage:** home page issue ([98aeb00](https://github.com/AliMD/alwatr/commit/98aeb00d3c2c7b6d8888c98f374d6550ff43a0c1))
- **ns/storage:** review and fix issues ([658426a](https://github.com/AliMD/alwatr/commit/658426a9ebc2125dfca96ee032ce7584511d710b))
- **service/storage:** duplicate \_data property ([61b78ac](https://github.com/AliMD/alwatr/commit/61b78acd8bd7865cad5cec7b2f7d50b8e802fcec))
- **service/storage:** remove home route ([5b4160d](https://github.com/AliMD/alwatr/commit/5b4160df0237085e43a103a02b9b63404eddda2c))
- **service/storage:** remove id type from requireQueryParams ([b2724f4](https://github.com/AliMD/alwatr/commit/b2724f4176204a826c3c521618ca92e73904f8e6))
- **service/storage:** update demo request ([bf02e99](https://github.com/AliMD/alwatr/commit/bf02e99e9b40f044506d2b7aaa98a5f7fccbbaa3))
- **services/storage:** duplicate \_data property ([61b78ac](https://github.com/AliMD/alwatr/commit/61b78acd8bd7865cad5cec7b2f7d50b8e802fcec))
- **services/storage:** remove home route ([5b4160d](https://github.com/AliMD/alwatr/commit/5b4160df0237085e43a103a02b9b63404eddda2c))
- **services/storage:** remove id type from requireQueryParams ([b2724f4](https://github.com/AliMD/alwatr/commit/b2724f4176204a826c3c521618ca92e73904f8e6))
- **services/storage:** update demo request ([bf02e99](https://github.com/AliMD/alwatr/commit/bf02e99e9b40f044506d2b7aaa98a5f7fccbbaa3))
- **starter/ns:** add host ([5747ff7](https://github.com/AliMD/alwatr/commit/5747ff73bf6e2cdf0c1c67fac69a4700db1d4c64))
- **storage-client:** demo ([83fa9d0](https://github.com/AliMD/alwatr/commit/83fa9d0bde2a65a02c225bcb9829a87667606fb6))
- **storage-client:** demo get not found ([5070912](https://github.com/AliMD/alwatr/commit/507091267f06a8f854833ccac5b9a3f77c46ae70))
Expand Down Expand Up @@ -159,11 +159,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
- **nano-server:** validate content type header in requireJsonBody ([d99eb74](https://github.com/AliMD/alwatr/commit/d99eb742c0c5ea1b92f44767d570bd42b9c9e342))
- **ns/storage:** home page ([73b287c](https://github.com/AliMD/alwatr/commit/73b287c0b717854b1c4bd240cb47196b81ea83af))
- **package:** pull push script ([7551d92](https://github.com/AliMD/alwatr/commit/7551d927873508816cb4cd0cba8d1563226aaa66))
- **service/storage-server:** has route ([7254393](https://github.com/AliMD/alwatr/commit/72543932408f5ffc24df79d577d3de8f97fb0358))
- **service/storage:** add all route ([a698e1d](https://github.com/AliMD/alwatr/commit/a698e1d67258bc3e8931333c4ecfea4db271c59f))
- **service/storage:** add keys route ([46fb970](https://github.com/AliMD/alwatr/commit/46fb9708c4a5438d1ef5179e3cba79cad4d004b0))
- **service/storage:** add remove route ([d4452cd](https://github.com/AliMD/alwatr/commit/d4452cd0366452ab07d82b338dbba345c32cd61d))
- **service/storage:** add requireToken to AlwatrConnection ([8073773](https://github.com/AliMD/alwatr/commit/8073773577b88a52baa90c6042bac52260ec3dc1))
- **services/storage-server:** has route ([7254393](https://github.com/AliMD/alwatr/commit/72543932408f5ffc24df79d577d3de8f97fb0358))
- **services/storage:** add all route ([a698e1d](https://github.com/AliMD/alwatr/commit/a698e1d67258bc3e8931333c4ecfea4db271c59f))
- **services/storage:** add keys route ([46fb970](https://github.com/AliMD/alwatr/commit/46fb9708c4a5438d1ef5179e3cba79cad4d004b0))
- **services/storage:** add remove route ([d4452cd](https://github.com/AliMD/alwatr/commit/d4452cd0366452ab07d82b338dbba345c32cd61d))
- **services/storage:** add requireToken to AlwatrConnection ([8073773](https://github.com/AliMD/alwatr/commit/8073773577b88a52baa90c6042bac52260ec3dc1))
- **storage-client:** AlwatrStorageClient class structure ([164f44e](https://github.com/AliMD/alwatr/commit/164f44e1028b325941d1b90be670b8f4194bfc75))
- **storage-client:** benchmark test ([7c0fc92](https://github.com/AliMD/alwatr/commit/7c0fc92fa910168775459dc2be484844a6a178cb))
- **storage-client:** forAll method ([40f802a](https://github.com/AliMD/alwatr/commit/40f802aa02b02d8d9341822b36708fc81f16cbce))
Expand Down Expand Up @@ -409,7 +409,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
- **mariadb:** add new service ([55f5dab](https://github.com/AliMD/alwatr/commit/55f5dab4bb68ad434797d9b222c8beea4e90a934))
- **php-apache:** classic php with apache ([6e1536f](https://github.com/AliMD/alwatr/commit/6e1536ff8166152237ea07c67a2c3dd60fb22f4e))
- **php-apache:** dynamic build and update structure ([850486f](https://github.com/AliMD/alwatr/commit/850486f9756c90660eac7dd6ed6fa3e6aa64e51e))
- **service/wordpress:** supper fast wordpress cloud! ([4998b90](https://github.com/AliMD/alwatr/commit/4998b90632a5105d0eec590e6b1c050ed18a8b41))
- **services/wordpress:** supper fast wordpress cloud! ([4998b90](https://github.com/AliMD/alwatr/commit/4998b90632a5105d0eec590e6b1c050ed18a8b41))
- **services:** improve all docker deployment ([ba135ad](https://github.com/AliMD/alwatr/commit/ba135adfcee406e4e9078bf83f307d9a67dca611))
- **toggle-cache:** improve styles ([ca9f07e](https://github.com/AliMD/alwatr/commit/ca9f07e1eab99f8a8b8a4143e6f1558d0e40e955))
- **traefik:** add service proxy ([5c2c74a](https://github.com/AliMD/alwatr/commit/5c2c74afa8ee460c183568617776dce7f627f65d))
Expand Down Expand Up @@ -440,12 +440,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
- **nano-server:** add token to connection ([8677999](https://github.com/AliMD/alwatr/commit/867799920c917dbafe3a041a8946f7e77577552f))
- **nano-server:** refactor, add seperate config, cache all routes ([2cdd203](https://github.com/AliMD/alwatr/commit/2cdd2030474b7c1796e311740f20b8f39631bae9))
- **provider:** show mwmory usage on new data loaded ([1a24df3](https://github.com/AliMD/alwatr/commit/1a24df32d057cfdc91a1c8d47c3a0346065b9a40))
- **service/storage:** base config ([75ae7d2](https://github.com/AliMD/alwatr/commit/75ae7d27dc3d910a2f45cf92e63bbd5115cc8fca))
- **service/storage:** updateDocument route ([723c795](https://github.com/AliMD/alwatr/commit/723c795d573635653ee4246fb91dfe096a414cb2))
- **service/storage:** extract and validate token ([dd4ffc4](https://github.com/AliMD/alwatr/commit/dd4ffc44b05ba0496b530a4a69164d595b72c081))
- **service/storage:** make base types ([fb26b7a](https://github.com/AliMD/alwatr/commit/fb26b7a4f7646e17f4b1c6a5b2c4b51d666752a0))
- **service/storage:** storage privider ([9b9c07f](https://github.com/AliMD/alwatr/commit/9b9c07f53725fb7eb2a92706d4f3392675d8aad2))
- **service/storage:** test and demo ([22e8ad4](https://github.com/AliMD/alwatr/commit/22e8ad44cb39cacdb99f7535befed1a736aec773))
- **services/storage:** base config ([75ae7d2](https://github.com/AliMD/alwatr/commit/75ae7d27dc3d910a2f45cf92e63bbd5115cc8fca))
- **services/storage:** updateDocument route ([723c795](https://github.com/AliMD/alwatr/commit/723c795d573635653ee4246fb91dfe096a414cb2))
- **services/storage:** extract and validate token ([dd4ffc4](https://github.com/AliMD/alwatr/commit/dd4ffc44b05ba0496b530a4a69164d595b72c081))
- **services/storage:** make base types ([fb26b7a](https://github.com/AliMD/alwatr/commit/fb26b7a4f7646e17f4b1c6a5b2c4b51d666752a0))
- **services/storage:** storage privider ([9b9c07f](https://github.com/AliMD/alwatr/commit/9b9c07f53725fb7eb2a92706d4f3392675d8aad2))
- **services/storage:** test and demo ([22e8ad4](https://github.com/AliMD/alwatr/commit/22e8ad44cb39cacdb99f7535befed1a736aec773))
- **storage:** add \_createdBy and \_updatedBy ([1a70945](https://github.com/AliMD/alwatr/commit/1a70945bc61921f13d839adde25fdfe9fb37eaad))
- **storage:** docker ([a78f784](https://github.com/AliMD/alwatr/commit/a78f7845aaaf4faace6de92dae57763299ee7d10))
- **storage:** get method ([0b04f12](https://github.com/AliMD/alwatr/commit/0b04f1209d7f865e2ef0e884a293587cfcd72420))
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ yarn build
## Usage

```bash
./packages/lab/zx-example/zx-example.js
./cloud/lab/zx-example/zx-example.js
```
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
"repository": {
"type": "git",
"url": "https://github.com/AliMD/alwatr",
"directory": "packages/core/zx-example"
"directory": "cloud/lab/zx-example"
},
"homepage": "https://github.com/AliMD/alwatr/tree/main/packages/lab/zx-example#readme",
"homepage": "https://github.com/AliMD/alwatr/tree/main/cloud/lab/zx-example#readme",
"bugs": {
"url": "https://github.com/AliMD/alwatr/issues"
},
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
"repository": {
"type": "git",
"url": "https://github.com/AliMD/alwatr",
"directory": "packages/core/fetch"
"directory": "core/fetch"
},
"homepage": "https://github.com/AliMD/alwatr/tree/main/packages/core/fetch#readme",
"homepage": "https://github.com/AliMD/alwatr/tree/main/core/fetch#readme",
"bugs": {
"url": "https://github.com/AliMD/alwatr/issues"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ function _processOptions(options: FetchOptions): Required<FetchOptions> {
}

if (options.url.lastIndexOf('?') === -1 && options.queryParameters != null) {
const queryParameters = options.queryParameters;
// prettier-ignore
const queryArray = Object
.keys(options.queryParameters)
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
.map((key) => `${key}=${String(options.queryParameters![key])}`);
.keys(queryParameters)
.map((key) => `${key}=${String(queryParameters[key])}`);

if (queryArray.length > 0) {
options.url += '?' + queryArray.join('&');
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"composite": true,
"tsBuildInfoFile": ".tsbuildinfo",
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions packages/core/i18n/package.json → core/i18n/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"repository": {
"type": "git",
"url": "https://github.com/AliMD/alwatr",
"directory": "packages/core/i18n"
"directory": "core/i18n"
},
"homepage": "https://github.com/AliMD/alwatr/tree/main/packages/core/i18n#readme",
"homepage": "https://github.com/AliMD/alwatr/tree/main/core/i18n#readme",
"bugs": {
"url": "https://github.com/AliMD/alwatr/issues"
},
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"composite": true,
"tsBuildInfoFile": ".tsbuildinfo",
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"repository": {
"type": "git",
"url": "https://github.com/AliMD/alwatr",
"directory": "packages/core/logger"
"directory": "core/logger"
},
"homepage": "https://github.com/AliMD/alwatr/tree/main/packages/core/logger#readme",
"homepage": "https://github.com/AliMD/alwatr/tree/main/core/logger#readme",
"bugs": {
"url": "https://github.com/AliMD/alwatr/issues"
},
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"composite": true,
"tsBuildInfoFile": ".tsbuildinfo",
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions packages/core/math/package.json → core/math/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
"repository": {
"type": "git",
"url": "https://github.com/AliMD/alwatr",
"directory": "packages/core/math"
"directory": "core/math"
},
"homepage": "https://github.com/AliMD/alwatr/tree/main/packages/core/math#readme",
"homepage": "https://github.com/AliMD/alwatr/tree/main/core/math#readme",
"bugs": {
"url": "https://github.com/AliMD/alwatr/issues"
},
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"composite": true,
"tsBuildInfoFile": ".tsbuildinfo",
Expand All @@ -10,6 +10,5 @@
"include": ["src/**/*"],
"exclude": [],
"references": [
// { "path": "../x" },
]
}
Loading