Skip to content

Commit b10fc6a

Browse files
author
Daniel Del Core
committed
more changes
1 parent b74b0a2 commit b10fc6a

File tree

13 files changed

+36
-78
lines changed

13 files changed

+36
-78
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"docs:start": "cd website && yarn start",
1212
"postinstall": "yarn monorepo:check",
1313
"build": "yarn build:pkgs && yarn build:community",
14-
"build:pkgs": "yarn clean && tsc --build tsconfig.packages.json",
14+
"build:pkgs": "tsc --build tsconfig.packages.json",
1515
"build:pkgs:watch": "tsc --build --watch tsconfig.packages.json",
1616
"build:community": "parcel build community/*",
1717
"build:community:watch": "parcel watch community/*",

packages/cli-alias/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
"extends": "../../tsconfig.packages.json",
33
"compilerOptions": {
44
"rootDir": "src",
5-
"outDir": "dist"
5+
"outDir": "dist",
6+
"baseUrl": "."
67
},
8+
"include": ["src"],
79
"references": [
810
{ "path": "../types" },
911
{ "path": "../core" },

packages/cli/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
"extends": "../../tsconfig.packages.json",
33
"compilerOptions": {
44
"rootDir": "src",
5-
"outDir": "dist"
5+
"outDir": "dist",
6+
"baseUrl": "."
67
},
8+
"include": ["src"],
79
"references": [
810
{ "path": "../types" },
911
{ "path": "../core" },

packages/core/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
"extends": "../../tsconfig.packages.json",
33
"compilerOptions": {
44
"rootDir": "src",
5-
"outDir": "dist"
5+
"outDir": "dist",
6+
"baseUrl": "."
67
},
8+
"include": ["src"],
79
"references": [{ "path": "../types" }]
810
}

packages/fetcher/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
"extends": "../../tsconfig.packages.json",
33
"compilerOptions": {
44
"rootDir": "src",
5-
"outDir": "dist"
5+
"outDir": "dist",
6+
"baseUrl": "."
67
},
8+
"include": ["src"],
79
"references": [{ "path": "../types" }]
810
}

packages/initializer/tsconfig.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
"extends": "../../tsconfig.packages.json",
33
"compilerOptions": {
44
"rootDir": "src",
5-
"outDir": "dist"
5+
"outDir": "dist",
6+
"baseUrl": "."
67
},
7-
"exclude": ["./template"],
8+
"include": ["src"],
9+
"exclude": ["./template/*"],
810
"references": [{ "path": "../types" }, { "path": "../utils" }]
911
}

packages/types/tsconfig.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
"extends": "../../tsconfig.packages.json",
33
"compilerOptions": {
44
"rootDir": "src",
5-
"outDir": "dist"
6-
}
5+
"outDir": "dist",
6+
"baseUrl": "."
7+
},
8+
"include": ["src"]
79
}

packages/utils/tsconfig.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
"extends": "../../tsconfig.packages.json",
33
"compilerOptions": {
44
"rootDir": "src",
5-
"outDir": "dist"
6-
}
5+
"outDir": "dist",
6+
"baseUrl": "."
7+
},
8+
"include": ["src"]
79
}

packages/validator/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
"extends": "../../tsconfig.packages.json",
33
"compilerOptions": {
44
"rootDir": "src",
5-
"outDir": "dist"
5+
"outDir": "dist",
6+
"baseUrl": "."
67
},
8+
"include": ["src"],
79
"references": [{ "path": "../fetcher" }, { "path": "../types" }]
810
}

scripts/configure-references.js

Lines changed: 0 additions & 59 deletions
This file was deleted.

0 commit comments

Comments
 (0)