Skip to content

Commit e70255d

Browse files
chore(deps): update @playform/build and add rootDir to tsconfig
Updated @playform/build from v0.3.0 to v0.3.1 to include latest fixes and improvements. Also added wildcard version for @types/node to allow any version. Additionally, configured TypeScript with explicit rootDir set to "./Source" in tsconfig.json to ensure proper source directory resolution and more predictable compilation behavior.
1 parent 8443ae1 commit e70255d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@
3232
"prepublishOnly": "Build 'Source/**/*.ts'"
3333
},
3434
"dependencies": {
35-
"@types/node": "25.3.2",
35+
"@types/node": "*",
3636
"deepmerge-ts": "7.1.5",
3737
"fast-glob": "3.3.3"
3838
},
3939
"devDependencies": {
40-
"@playform/build": "0.3.0"
40+
"@playform/build": "0.3.1"
4141
},
4242
"publishConfig": {
4343
"access": "public",

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"compilerOptions": {
33
"baseUrl": "./",
4-
"outDir": "Target"
4+
"outDir": "Target",
5+
"rootDir": "./Source"
56
},
67
"extends": "@playform/build/tsconfig",
78
"include": ["Source"]

0 commit comments

Comments
 (0)