添加配置文件

This commit is contained in:
wurou 2022-09-22 20:09:18 +08:00
parent 927cf87fda
commit 6e7817737f
3 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1 @@
export * from './status-bar.js'

View File

@ -0,0 +1,22 @@
{
"name": "@star-web-components/status-bar",
"version": "0.0.1",
"description": "",
"type": "module",
"main": "./index.js",
"module": "./index.js",
"exports": {
".": {
"default": "./index.js"
},
"./index": {
"default": "./index.js"
},
"./status-bar.js": {
"default": "./status-bar.js"
},
"./package.json": "./package.json"
},
"author": "",
"license": "ISC"
}

View File

@ -0,0 +1,8 @@
{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"composite": true,
"rootDir": "../../"
},
"include": ["*.ts"]
}