Skip to content

Commit 7ce61bd

Browse files
committed
refactor: Switch to JS (#180)
* refactor: Switch to JS * ci: No more build script * ci: Add type-checking step * chore: Patch broken types in '@rollup/pluginutils'
1 parent b4c1638 commit 7ce61bd

12 files changed

Lines changed: 971 additions & 174 deletions

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ jobs:
1818
cache: "npm"
1919
cache-dependency-path: "**/package-lock.json"
2020
- run: npm ci
21-
- run: npm run build
2221
- run: npm test
22+
- run: npm run test:types

jsconfig.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ES2024",
4+
"strict": true,
5+
"strictNullChecks": true,
6+
"noImplicitAny": true,
7+
"esModuleInterop": true,
8+
"module": "preserve",
9+
"noEmit": true,
10+
"allowJs": true,
11+
"checkJs": true,
12+
"skipLibCheck": false,
13+
"maxNodeModuleJsDepth": 0
14+
},
15+
"include": ["src/**/*"],
16+
}

0 commit comments

Comments
 (0)