Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
  • Loading branch information
towersxu committed Sep 4, 2021
1 parent f6c0486 commit d1dc9be
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logicflow/core",
"version": "0.6.14",
"version": "0.6.15",
"description": "LogicFlow core, to quickly build flowchart editor",
"main": "dist/logic-flow.js",
"license": "Apache 2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logicflow/extension",
"version": "0.6.14",
"version": "0.6.15",
"description": "LogicFlow extension",
"main": "cjs/index.js",
"module": "es/index.js",
Expand Down
24 changes: 24 additions & 0 deletions packages/mvp/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"compilerOptions": {
"target": "es5",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"strictPropertyInitialization": false
},
"include": [],
"exclude": [
"node_modules",
"**/*.spec.ts",
"**/*.d.ts"
]
}

0 comments on commit d1dc9be

Please sign in to comment.