@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/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
@@ -95,6 +95,7 @@ var rawPlugin = (options = {}, meta) => {
95
95
  ...configContents.options,
96
96
  target: ts.ScriptTarget.ESNext
97
97
  };
98
+ compilerOptions.jsx ?? (compilerOptions.jsx = "preserve");
98
99
  compilerOptionsWithSourceMap = {
99
100
  ...compilerOptions,
100
101
  sourceMap: true
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.76",
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": {