mirror of
https://github.com/docmost/docmost.git
synced 2026-06-15 22:48:42 +08:00
feat(base-formula): scaffold shared package
This commit is contained in:
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=index.client.js.map
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.client.js","sourceRoot":"","sources":["../src/index.client.ts"],"names":[],"mappings":""}
|
||||
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=index.server.js.map
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.server.js","sourceRoot":"","sources":["../src/index.server.ts"],"names":[],"mappings":""}
|
||||
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"name": "@docmost/base-formula",
|
||||
"homepage": "https://docmost.com",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"build": "tsc --build",
|
||||
"dev": "tsc --watch"
|
||||
},
|
||||
"main": "dist/index.server.js",
|
||||
"module": "./src/index.server.ts",
|
||||
"exports": {
|
||||
"./client": {
|
||||
"types": "./src/index.client.ts",
|
||||
"default": "./src/index.client.ts"
|
||||
},
|
||||
"./server": {
|
||||
"types": "./src/index.server.ts",
|
||||
"default": "./src/index.server.ts"
|
||||
},
|
||||
".": {
|
||||
"types": "./src/index.server.ts",
|
||||
"default": "./src/index.server.ts"
|
||||
}
|
||||
},
|
||||
"types": "src/index.server.ts",
|
||||
"dependencies": {}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
// Client-side public surface: parse, typecheck, cycle-detect, pretty-print.
|
||||
// Does NOT export eval or the function registry.
|
||||
export {};
|
||||
@@ -0,0 +1,2 @@
|
||||
// Server-side public surface: everything in client + evaluator + registry.
|
||||
export {};
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"extends": "../editor-ext/tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist",
|
||||
"rootDir": "./src",
|
||||
"declaration": true,
|
||||
"composite": true
|
||||
},
|
||||
"include": ["src/**/*"],
|
||||
"exclude": ["dist", "node_modules"]
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
Generated
+2
@@ -843,6 +843,8 @@ importers:
|
||||
specifier: ^8.57.1
|
||||
version: 8.57.1(eslint@9.39.4(jiti@2.4.2))(typescript@5.9.3)
|
||||
|
||||
packages/base-formula: {}
|
||||
|
||||
packages/editor-ext:
|
||||
dependencies:
|
||||
marked:
|
||||
|
||||
Reference in New Issue
Block a user