tsc is so picky lmao
This commit is contained in:
parent
9a56b99eff
commit
daf07441de
19 changed files with 5 additions and 16 deletions
|
@ -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"
|
||||
]
|
||||
}
|
||||
|
|
0
typings/src/byte.d.ts → typings/byte.d.ts
vendored
0
typings/src/byte.d.ts → typings/byte.d.ts
vendored
0
typings/src/clone.d.ts → typings/clone.d.ts
vendored
0
typings/src/clone.d.ts → typings/clone.d.ts
vendored
0
typings/src/cond.d.ts → typings/cond.d.ts
vendored
0
typings/src/cond.d.ts → typings/cond.d.ts
vendored
0
typings/src/const.d.ts → typings/const.d.ts
vendored
0
typings/src/const.d.ts → typings/const.d.ts
vendored
0
typings/dist/index.d.ts
vendored
0
typings/dist/index.d.ts
vendored
0
typings/src/fn.d.ts → typings/fn.d.ts
vendored
0
typings/src/fn.d.ts → typings/fn.d.ts
vendored
0
typings/src/index.d.ts → typings/index.d.ts
vendored
0
typings/src/index.d.ts → typings/index.d.ts
vendored
0
typings/src/iter.d.ts → typings/iter.d.ts
vendored
0
typings/src/iter.d.ts → typings/iter.d.ts
vendored
0
typings/src/multi.d.ts → typings/multi.d.ts
vendored
0
typings/src/multi.d.ts → typings/multi.d.ts
vendored
0
typings/src/state.d.ts → typings/state.d.ts
vendored
0
typings/src/state.d.ts → typings/state.d.ts
vendored
2
typings/tests/index.d.ts
vendored
2
typings/tests/index.d.ts
vendored
|
@ -1,2 +0,0 @@
|
|||
#!/usr/bin/env node
|
||||
export {};
|
1
typings/tests/units/bytes.d.ts
vendored
1
typings/tests/units/bytes.d.ts
vendored
|
@ -1 +0,0 @@
|
|||
export const Byte: any[];
|
3
typings/tests/units/common.d.ts
vendored
3
typings/tests/units/common.d.ts
vendored
|
@ -1,3 +0,0 @@
|
|||
export const assertState: any;
|
||||
export const parseEq: any;
|
||||
export const parseErr: any;
|
1
typings/tests/units/cond.d.ts
vendored
1
typings/tests/units/cond.d.ts
vendored
|
@ -1 +0,0 @@
|
|||
export const Conditionals: any[];
|
3
typings/tests/units/index.d.ts
vendored
3
typings/tests/units/index.d.ts
vendored
|
@ -1,3 +0,0 @@
|
|||
export * from "./bytes.js";
|
||||
export * from "./iter.js";
|
||||
export * from "./cond.js";
|
1
typings/tests/units/iter.d.ts
vendored
1
typings/tests/units/iter.d.ts
vendored
|
@ -1 +0,0 @@
|
|||
export const Iterator: any[];
|
0
typings/src/tuple.d.ts → typings/tuple.d.ts
vendored
0
typings/src/tuple.d.ts → typings/tuple.d.ts
vendored
Loading…
Add table
Reference in a new issue