Skip to content

Commit

Permalink
chore: run format script (toeverything#6083)
Browse files Browse the repository at this point in the history
  • Loading branch information
Flrande authored Jan 23, 2024
1 parent 80db271 commit 25f3d68
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 41 deletions.
10 changes: 5 additions & 5 deletions packages/block-std/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
"compilerOptions": {
"rootDir": "./src/",
"outDir": "./dist/",
"noEmit": false
"noEmit": false,
},
"include": ["./src"],
"references": [
{
"path": "../global"
"path": "../global",
},
{
"path": "../store"
}
]
"path": "../store",
},
],
}
16 changes: 8 additions & 8 deletions packages/blocks/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@
"compilerOptions": {
"rootDir": "./src/",
"outDir": "./dist/",
"noEmit": false
"noEmit": false,
},
"include": ["./src"],
"references": [
{
"path": "../global"
"path": "../global",
},
{
"path": "../store"
"path": "../store",
},
{
"path": "../block-std"
"path": "../block-std",
},
{
"path": "../lit"
"path": "../lit",
},
{
"path": "../inline"
}
]
"path": "../inline",
},
],
}
4 changes: 2 additions & 2 deletions packages/global/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"compilerOptions": {
"rootDir": "./src/",
"outDir": "./dist/",
"noEmit": false
"noEmit": false,
},
"include": ["./src", "index.d.ts"],
// This package MUST NOT use any other package.
"references": []
"references": [],
}
8 changes: 4 additions & 4 deletions packages/inline/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"compilerOptions": {
"rootDir": "./src/",
"outDir": "./dist/",
"noEmit": false
"noEmit": false,
},
"include": ["./src"],
"references": [
{
"path": "../global"
}
]
"path": "../global",
},
],
}
12 changes: 6 additions & 6 deletions packages/lit/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
"compilerOptions": {
"rootDir": "./src/",
"outDir": "./dist/",
"noEmit": false
"noEmit": false,
},
"include": ["./src"],
"references": [
{
"path": "../global"
"path": "../global",
},
{
"path": "../store"
"path": "../store",
},
{
"path": "../block-std"
}
]
"path": "../block-std",
},
],
}
16 changes: 8 additions & 8 deletions packages/presets/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@
"compilerOptions": {
"rootDir": "./src/",
"outDir": "./dist/",
"noEmit": false
"noEmit": false,
},
"include": ["./src"],
"references": [
{
"path": "../global"
"path": "../global",
},
{
"path": "../store"
"path": "../store",
},
{
"path": "../block-std"
"path": "../block-std",
},
{
"path": "../lit"
"path": "../lit",
},
{
"path": "../blocks"
}
]
"path": "../blocks",
},
],
}
10 changes: 5 additions & 5 deletions packages/store/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
"compilerOptions": {
"rootDir": "./src/",
"outDir": "./dist/",
"noEmit": false
"noEmit": false,
},
"include": ["./src"],
"references": [
{
"path": "../global"
"path": "../global",
},
{
"path": "../inline"
}
]
"path": "../inline",
},
],
}
6 changes: 3 additions & 3 deletions tests/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"@store/provider/*": ["../packages/store/provider/*"],
"@store/*": ["../packages/store/src/*"],
"@presets/*": ["../packages/presets/src/*"],
"@playground/*": ["../packages/playground/*"]
}
"@playground/*": ["../packages/playground/*"],
},
},
"include": ["**.spec.ts", "**.test.ts", "**/**.ts"]
"include": ["**.spec.ts", "**.test.ts", "**/**.ts"],
}

0 comments on commit 25f3d68

Please sign in to comment.