Skip to content

Commit 5779694

Browse files
authored
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 d3df2ac commit 5779694

11 files changed

Lines changed: 929 additions & 144 deletions

File tree

.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: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ES2019",
4+
"strict": true,
5+
"strictNullChecks": true,
6+
"noImplicitAny": true,
7+
"esModuleInterop": true,
8+
"module": "node20",
9+
"moduleResolution": "node16",
10+
"noEmit": true,
11+
"allowJs": true,
12+
"checkJs": true,
13+
"skipLibCheck": false,
14+
"maxNodeModuleJsDepth": 0
15+
},
16+
"include": ["src/**/*"],
17+
}

0 commit comments

Comments
 (0)