Skip to content

Commit

Permalink
feat(core/type): make package
Browse files Browse the repository at this point in the history
  • Loading branch information
MM25Zamanian authored and AliMD committed Dec 28, 2022
1 parent 9b769f7 commit 1d8d1bd
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 0 deletions.
3 changes: 3 additions & 0 deletions core/type/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Alwatr Types - `@alwatr/type`

Alwatr Types.
33 changes: 33 additions & 0 deletions core/type/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "@alwatr/type",
"version": "0.26.0",
"description": "Alwatr Types",
"private": true,
"keywords": [
"type",
"typescript",
"esm",
"alwatr"
],
"type": "module",
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com> (https://ali.mihandoost.com)",
"license": "MIT",
"files": [
"**/**/*.{d.ts.map,d.ts,js.map,js,md}"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/AliMD/alwatr",
"directory": "core/type"
},
"homepage": "https://github.com/AliMD/alwatr/tree/main/core/type#readme",
"bugs": {
"url": "https://github.com/AliMD/alwatr/issues"
},
"dependencies": {
"tslib": "~2.4.1"
}
}
1 change: 1 addition & 0 deletions core/type/src/type.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {};
19 changes: 19 additions & 0 deletions core/type/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"extends": "../../tsconfig.base",
"compilerOptions": {
"composite": true,
"tsBuildInfoFile": ".tsbuildinfo",
"rootDir": "src",
"outDir": ".",
"plugins": [
{
"name": "ts-lit-plugin",
"strict": true
}
]
},
// files, include and exclude from the inheriting config are always overwritten.
"include": ["src/**/*.ts"],
"exclude": [],
"references": []
}
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
{"path": "./core/storage-engine"},
{"path": "./core/storage-client"},
{"path": "./core/token"},
{"path": "./core/type"},

// ui
{"path": "./ui/element"},
Expand Down

0 comments on commit 1d8d1bd

Please sign in to comment.