@jakesidsmith/tsb 0.2.3 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.d.ts +6 -6
- package/dist/webpack-callback.d.ts +1 -1
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -103,12 +103,12 @@ export interface Config {
|
|
|
103
103
|
*/
|
|
104
104
|
extendWebpackModuleRules?: (rules: WebpackModuleRule[], mode: Mode, command: Command) => WebpackModuleRule[];
|
|
105
105
|
}
|
|
106
|
-
export
|
|
107
|
-
export
|
|
108
|
-
export
|
|
109
|
-
export
|
|
110
|
-
export
|
|
111
|
-
export
|
|
106
|
+
export type Headers = Record<string, string>;
|
|
107
|
+
export type Env = Record<string, any>;
|
|
108
|
+
export type Command = 'build' | 'watch' | 'serve';
|
|
109
|
+
export type InsertScriptTag = 'body' | 'head' | false;
|
|
110
|
+
export type Mode = 'development' | 'production';
|
|
111
|
+
export type JSX = 'preserve' | 'react' | 'react-jsx' | 'react-jsxdev' | 'react-native';
|
|
112
112
|
export interface Tsconfig {
|
|
113
113
|
include?: readonly string[];
|
|
114
114
|
extends?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jakesidsmith/tsb",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Dead simple TypeScript bundler, watcher, dev server, transpiler, and polyfiller",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"semver": "^7.3.2",
|
|
62
62
|
"ts-loader": "^8.0.11",
|
|
63
63
|
"tsconfig-paths-webpack-plugin": "^3.3.0",
|
|
64
|
-
"typescript": "^
|
|
64
|
+
"typescript": "^5.0.2",
|
|
65
65
|
"webpack": "^4.44.2",
|
|
66
66
|
"webpack-dev-server": "^3.11.0",
|
|
67
67
|
"yup": "^0.30.0"
|