@danielx/civet 0.6.76 → 0.6.77
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/browser.js +561 -435
- package/dist/esbuild.js +1 -0
- package/dist/main.js +561 -435
- package/dist/main.mjs +561 -435
- package/dist/rollup.js +1 -0
- package/dist/unplugin-shared.mjs +1 -0
- package/dist/unplugin.js +1 -0
- package/dist/vite.js +1 -0
- package/dist/webpack.js +1 -0
- package/package.json +4 -1
package/dist/rollup.js
CHANGED
|
@@ -128,6 +128,7 @@ var rawPlugin = (options = {}, meta) => {
|
|
|
128
128
|
...configContents.options,
|
|
129
129
|
target: ts.ScriptTarget.ESNext
|
|
130
130
|
};
|
|
131
|
+
compilerOptions.jsx ?? (compilerOptions.jsx = "preserve");
|
|
131
132
|
compilerOptionsWithSourceMap = {
|
|
132
133
|
...compilerOptions,
|
|
133
134
|
sourceMap: true
|
package/dist/unplugin-shared.mjs
CHANGED
package/dist/unplugin.js
CHANGED
|
@@ -128,6 +128,7 @@ var rawPlugin = (options = {}, meta) => {
|
|
|
128
128
|
...configContents.options,
|
|
129
129
|
target: ts.ScriptTarget.ESNext
|
|
130
130
|
};
|
|
131
|
+
compilerOptions.jsx ?? (compilerOptions.jsx = "preserve");
|
|
131
132
|
compilerOptionsWithSourceMap = {
|
|
132
133
|
...compilerOptions,
|
|
133
134
|
sourceMap: true
|
package/dist/vite.js
CHANGED
|
@@ -128,6 +128,7 @@ var rawPlugin = (options = {}, meta) => {
|
|
|
128
128
|
...configContents.options,
|
|
129
129
|
target: ts.ScriptTarget.ESNext
|
|
130
130
|
};
|
|
131
|
+
compilerOptions.jsx ?? (compilerOptions.jsx = "preserve");
|
|
131
132
|
compilerOptionsWithSourceMap = {
|
|
132
133
|
...compilerOptions,
|
|
133
134
|
sourceMap: true
|
package/dist/webpack.js
CHANGED
|
@@ -128,6 +128,7 @@ var rawPlugin = (options = {}, meta) => {
|
|
|
128
128
|
...configContents.options,
|
|
129
129
|
target: ts.ScriptTarget.ESNext
|
|
130
130
|
};
|
|
131
|
+
compilerOptions.jsx ?? (compilerOptions.jsx = "preserve");
|
|
131
132
|
compilerOptionsWithSourceMap = {
|
|
132
133
|
...compilerOptions,
|
|
133
134
|
sourceMap: true
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danielx/civet",
|
|
3
3
|
"type": "commonjs",
|
|
4
|
-
"version": "0.6.
|
|
4
|
+
"version": "0.6.77",
|
|
5
5
|
"description": "CoffeeScript style syntax for TypeScript",
|
|
6
6
|
"main": "dist/main.js",
|
|
7
7
|
"module": "dist/main.mjs",
|
|
@@ -112,6 +112,9 @@
|
|
|
112
112
|
],
|
|
113
113
|
"include": [
|
|
114
114
|
"source"
|
|
115
|
+
],
|
|
116
|
+
"exclude": [
|
|
117
|
+
"source/parser/types.civet"
|
|
115
118
|
]
|
|
116
119
|
},
|
|
117
120
|
"mocha": {
|