Skip to content

Commit 8c3178e

Browse files
committed
chore: skip lib check for tsconfig
1 parent 96c569d commit 8c3178e

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"test.format": "prettier . --check",
3535
"lint": "eslint . --fix",
3636
"test.lint": "eslint .",
37-
"tsc": "tsc -p src/tsconfig.json || echo done",
37+
"tsc": "tsc -p src/tsconfig.json",
3838
"build": "npm run tsc",
3939
"prepare": "npm run build",
4040
"bump": "ncu -u -x coffeescript"

src/main.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
11
import { includesAny, getPluginFunction } from "./utils"
22

3-
//@ts-ignore
43
import type resolve from "@rollup/plugin-node-resolve"
5-
//@ts-ignore
64
import type commonjs from "@rollup/plugin-commonjs"
75
import type { terser } from "rollup-plugin-terser"
86
import type sourcemaps from "rollup-plugin-sourcemaps"
9-
// @ts-ignore
107
import type replace from "@rollup/plugin-replace"
118
// @ts-ignore
129
import type autoExternal from "rollup-plugin-auto-external"
13-
//@ts-ignore
1410
import type typescript from "@rollup/plugin-typescript"
1511
// @ts-ignore
1612
import type coffeescript from "rollup-plugin-coffee-script"
1713
import type json from "@rollup/plugin-json"
1814
// @ts-ignore
1915
import type cssOnly from "rollup-plugin-css-only"
20-
//@ts-ignore
2116
import type babel from "@rollup/plugin-babel"
2217
import type { wasm } from "@rollup/plugin-wasm"
2318
// @ts-ignore

src/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"inlineSources": true,
1717
"preserveSymlinks": true,
1818
"removeComments": true,
19+
"skipLibCheck": true,
1920
"jsx": "react",
2021
"jsxFactory": "etch.dom",
2122
"lib": ["ES2018", "dom"],

0 commit comments

Comments
 (0)