create-rsbuild 0.0.0-next-20240528072128 → 0.0.0-next-20240723074951
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/index.js +644 -89
- package/package.json +6 -3
- package/template-biome/biome.json +25 -0
- package/template-biome/package.json +12 -0
- package/template-eslint/common-js/eslint.config.mjs +8 -0
- package/template-eslint/common-js/package.json +13 -0
- package/template-eslint/common-ts/eslint.config.mjs +10 -0
- package/template-eslint/common-ts/package.json +14 -0
- package/template-eslint/react-js/eslint.config.mjs +29 -0
- package/template-eslint/react-js/package.json +16 -0
- package/template-eslint/react-ts/eslint.config.mjs +31 -0
- package/template-eslint/react-ts/package.json +17 -0
- package/template-eslint/svelte-js/eslint.config.mjs +20 -0
- package/template-eslint/svelte-js/package.json +14 -0
- package/template-eslint/svelte-ts/eslint.config.mjs +28 -0
- package/template-eslint/svelte-ts/package.json +16 -0
- package/template-eslint/vue-js/eslint.config.mjs +10 -0
- package/template-eslint/vue-js/package.json +14 -0
- package/template-eslint/vue-ts/eslint.config.mjs +12 -0
- package/template-eslint/vue-ts/package.json +15 -0
- package/template-lit-js/package.json +4 -2
- package/template-lit-ts/package.json +4 -2
- package/template-lit-ts/tsconfig.json +3 -1
- package/template-preact-js/package.json +1 -1
- package/template-preact-ts/package.json +2 -2
- package/template-preact-ts/src/index.tsx +4 -1
- package/template-preact-ts/tsconfig.json +2 -0
- package/template-prettier/.prettierignore +4 -0
- package/template-prettier/.prettierrc +3 -0
- package/template-prettier/package.json +11 -0
- package/template-react-ts/package.json +2 -2
- package/template-react-ts/src/index.tsx +9 -6
- package/template-react-ts/tsconfig.json +3 -1
- package/template-solid-js/package.json +1 -1
- package/template-solid-js/rsbuild.config.mjs +0 -1
- package/template-solid-ts/package.json +2 -2
- package/template-solid-ts/rsbuild.config.ts +0 -1
- package/template-solid-ts/src/index.tsx +4 -1
- package/template-solid-ts/tsconfig.json +3 -1
- package/template-svelte-js/package.json +1 -1
- package/template-svelte-js/src/index.js +0 -3
- package/template-svelte-ts/package.json +5 -3
- package/template-svelte-ts/src/index.ts +0 -3
- package/template-svelte-ts/tsconfig.json +6 -1
- package/template-vanilla-ts/package.json +1 -1
- package/template-vanilla-ts/tsconfig.json +3 -1
- package/template-vue2-ts/package.json +1 -1
- package/template-vue2-ts/tsconfig.json +3 -1
- package/template-vue3-ts/package.json +1 -1
- package/template-vue3-ts/tsconfig.json +3 -1
- package/dist/index.d.ts +0 -3
|
@@ -3,12 +3,17 @@
|
|
|
3
3
|
"target": "ES2020",
|
|
4
4
|
"lib": ["DOM", "ES2020"],
|
|
5
5
|
"module": "ESNext",
|
|
6
|
+
"noEmit": true,
|
|
6
7
|
"strict": true,
|
|
7
8
|
"skipLibCheck": true,
|
|
9
|
+
// svelte-preprocess cannot figure out whether you have a value or a type, so tell TypeScript
|
|
10
|
+
// to enforce using `import type` instead of `import` for Types.
|
|
11
|
+
"verbatimModuleSyntax": true,
|
|
8
12
|
"isolatedModules": true,
|
|
9
13
|
"resolveJsonModule": true,
|
|
10
14
|
"moduleResolution": "bundler",
|
|
11
|
-
"useDefineForClassFields": true
|
|
15
|
+
"useDefineForClassFields": true,
|
|
16
|
+
"allowImportingTsExtensions": true
|
|
12
17
|
},
|
|
13
18
|
"include": ["src"]
|
|
14
19
|
}
|
|
@@ -3,12 +3,14 @@
|
|
|
3
3
|
"target": "ES2020",
|
|
4
4
|
"lib": ["DOM", "ES2020"],
|
|
5
5
|
"module": "ESNext",
|
|
6
|
+
"noEmit": true,
|
|
6
7
|
"strict": true,
|
|
7
8
|
"skipLibCheck": true,
|
|
8
9
|
"isolatedModules": true,
|
|
9
10
|
"resolveJsonModule": true,
|
|
10
11
|
"moduleResolution": "bundler",
|
|
11
|
-
"useDefineForClassFields": true
|
|
12
|
+
"useDefineForClassFields": true,
|
|
13
|
+
"allowImportingTsExtensions": true
|
|
12
14
|
},
|
|
13
15
|
"include": ["src"]
|
|
14
16
|
}
|
|
@@ -4,12 +4,14 @@
|
|
|
4
4
|
"lib": ["DOM", "ES2020"],
|
|
5
5
|
"module": "ESNext",
|
|
6
6
|
"jsx": "preserve",
|
|
7
|
+
"noEmit": true,
|
|
7
8
|
"strict": true,
|
|
8
9
|
"skipLibCheck": true,
|
|
9
10
|
"isolatedModules": true,
|
|
10
11
|
"resolveJsonModule": true,
|
|
11
12
|
"moduleResolution": "bundler",
|
|
12
|
-
"useDefineForClassFields": true
|
|
13
|
+
"useDefineForClassFields": true,
|
|
14
|
+
"allowImportingTsExtensions": true
|
|
13
15
|
},
|
|
14
16
|
"include": ["src"]
|
|
15
17
|
}
|
|
@@ -5,12 +5,14 @@
|
|
|
5
5
|
"module": "ESNext",
|
|
6
6
|
"jsx": "preserve",
|
|
7
7
|
"jsxImportSource": "vue",
|
|
8
|
+
"noEmit": true,
|
|
8
9
|
"strict": true,
|
|
9
10
|
"skipLibCheck": true,
|
|
10
11
|
"isolatedModules": true,
|
|
11
12
|
"resolveJsonModule": true,
|
|
12
13
|
"moduleResolution": "bundler",
|
|
13
|
-
"useDefineForClassFields": true
|
|
14
|
+
"useDefineForClassFields": true,
|
|
15
|
+
"allowImportingTsExtensions": true
|
|
14
16
|
},
|
|
15
17
|
"include": ["src"]
|
|
16
18
|
}
|
package/dist/index.d.ts
DELETED