Skip to content

Commit 6df5c8d

Browse files
committed
refactor: move config files to .config directory
Relocate biome.json and tsconfig.dts.json to .config/ for better organization
1 parent 38c03bc commit 6df5c8d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

biome.json renamed to .config/biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
2+
"$schema": "../node_modules/@biomejs/biome/configuration_schema.json",
33
"files": {
44
"includes": [
55
"**",
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"extends": "./.config/tsconfig.base.json",
2+
"extends": "./tsconfig.base.json",
33
"compilerOptions": {
44
"declaration": true,
55
"declarationMap": false,
66
"emitDeclarationOnly": true,
77
"module": "commonjs",
88
"moduleResolution": "node",
9-
"outDir": "./dist",
10-
"rootDir": "./src",
9+
"outDir": "../dist",
10+
"rootDir": "../src",
1111
"verbatimModuleSyntax": false
1212
},
13-
"include": ["src/**/*.ts"]
13+
"include": ["../src/**/*.ts"]
1414
}

0 commit comments

Comments
 (0)