@stryke/capnp 0.4.2 → 0.4.3

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/bin/capnpc.cjs CHANGED
@@ -1130,6 +1130,7 @@ async function compileAction(options) {
1130
1130
  const resolvedTsconfig = await readJsonFile(options.tsconfig);
1131
1131
  const tsconfig = import_typescript.default.parseJsonConfigFileContent(resolvedTsconfig, import_typescript.default.sys, findFilePath(options.tsconfig));
1132
1132
  tsconfig.options.configFilePath = options.tsconfig;
1133
+ tsconfig.options.noImplicitOverride = false;
1133
1134
  const schema = [];
1134
1135
  for (const schemaPath of options.schema) {
1135
1136
  if (!schemaPath || !schemaPath.includes("*") && !existsSync2(schemaPath)) {
package/bin/capnpc.js CHANGED
@@ -1098,6 +1098,7 @@ async function compileAction(options) {
1098
1098
  const resolvedTsconfig = await readJsonFile(options.tsconfig);
1099
1099
  const tsconfig = ts.parseJsonConfigFileContent(resolvedTsconfig, ts.sys, findFilePath(options.tsconfig));
1100
1100
  tsconfig.options.configFilePath = options.tsconfig;
1101
+ tsconfig.options.noImplicitOverride = false;
1101
1102
  const schema = [];
1102
1103
  for (const schemaPath of options.schema) {
1103
1104
  if (!schemaPath || !schemaPath.includes("*") && !existsSync2(schemaPath)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stryke/capnp",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "type": "module",
5
5
  "description": "A package to assist in running the Cap'n Proto compiler and creating Cap'n Proto serialization protocol schemas.",
6
6
  "repository": {