tsc is so picky lmao

This commit is contained in:
Rowan 2025-05-25 08:27:02 -05:00
parent 9a56b99eff
commit daf07441de
19 changed files with 5 additions and 16 deletions

View file

@ -27,7 +27,7 @@
/* Modules */
"module": "commonjs", /* Specify what module code is generated. */
"rootDir": "./", /* Specify the root folder within your source files. */
"rootDir": "./src", /* Specify the root folder within your source files. */
// "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
@ -59,7 +59,7 @@
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
// "noEmit": true, /* Disable emitting files from a compilation. */
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
"outDir": "./typings", /* Specify an output folder for all emitted files. */
// "outDir": "./typings", /* Specify an output folder for all emitted files. */
// "removeComments": true, /* Disable emitting comments. */
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
@ -72,7 +72,7 @@
// "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */
// "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
// "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */
// "declarationDir": "./", /* Specify the output directory for generated declaration files. */
"declarationDir": "./typings", /* Specify the output directory for generated declaration files. */
/* Interop Constraints */
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
@ -110,7 +110,7 @@
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"exclude": [
"typings"
"include": [
"src"
]
}

View file

View file

@ -1,2 +0,0 @@
#!/usr/bin/env node
export {};

View file

@ -1 +0,0 @@
export const Byte: any[];

View file

@ -1,3 +0,0 @@
export const assertState: any;
export const parseEq: any;
export const parseErr: any;

View file

@ -1 +0,0 @@
export const Conditionals: any[];

View file

@ -1,3 +0,0 @@
export * from "./bytes.js";
export * from "./iter.js";
export * from "./cond.js";

View file

@ -1 +0,0 @@
export const Iterator: any[];