Remove types lint for now

This commit is contained in:
Jerome Wu
2022-09-30 17:48:47 +08:00
parent 15c5019159
commit b496cf1f98
4 changed files with 8 additions and 2290 deletions

View File

@@ -1,3 +1,5 @@
// TODO: Add lint and test.
export type Pointer = number;
export type StringPointer = Pointer;
export type StringArrayPointer = Pointer;

View File

@@ -1,18 +0,0 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": ["es6"],
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
// If the library is an external module (uses `export`), this allows your test file to import "mylib" instead of "./index".
// If the library is global (cannot be imported via `import` or `require`), leave this out.
"baseUrl": ".",
"paths": { "@ffmpeg/types": ["."] }
}
}