Skip to content

Commit

Permalink
fix: tsconfig settings
Browse files Browse the repository at this point in the history
Signed-off-by: Saulo Vallory <[email protected]>
  • Loading branch information
svallory committed Nov 27, 2024
1 parent df08cd2 commit 7a95de5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 39 deletions.
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
{
"name": "figma-plugin-sdk",
"private": true,
"name": "@cva.design/figma-sdk",
"infra": "monorepo",
"version": "0.0.0",
"author": "Saulo Vallory",
"license": "MIT",
"workspaces": [
"packages/*"
],
"workspaces": ["packages/*"],
"scripts": {
"moon": "moon --color --log trace"
},
Expand Down
16 changes: 2 additions & 14 deletions packages/message-bus/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,9 @@
"compilerOptions": {
"rootDir": "./src",
"outDir": "../../.moon/cache/types/packages/message-bus",
"verbatimModuleSyntax": false,
"paths": {
"@figma-plugin-sdk/message-bus": [
"src/index.ts"
],
"@figma-plugin-sdk/message-bus/*": [
"src/*"
]
}
"verbatimModuleSyntax": false
},
"include": [
"**/*",
"src/**/*",
"tests/**/*"
],
"include": ["**/*", "src/**/*", "tests/**/*"],
"references": [
{
"path": "./tsconfig.esm.json"
Expand Down
23 changes: 2 additions & 21 deletions packages/rpc/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,9 @@
"compilerOptions": {
"rootDir": "./src",
"outDir": "../../.moon/cache/types/packages/rpc",
"verbatimModuleSyntax": false,
"baseUrl": "./",
"paths": {
"@figma-plugin-sdk/message-bus": [
"./src/index.ts"
],
"@figma-plugin-sdk/message-bus/*": [
"./src/*"
],
"@figma-plugin-sdk/rpc": [
"src/index.ts"
],
"@figma-plugin-sdk/rpc/*": [
"src/*"
]
}
"verbatimModuleSyntax": false
},
"include": [
"**/*",
"src/**/*",
"tests/**/*"
],
"include": ["**/*", "src/**/*", "tests/**/*"],
"references": [
{
"path": "./tsconfig.esm.json"
Expand Down

0 comments on commit 7a95de5

Please sign in to comment.