Don't run tsc

This commit is contained in:
Adria Navarro 2024-02-21 21:13:50 +01:00
parent a572cc980f
commit 0ad7bde478
2 changed files with 2 additions and 5 deletions

View File

@ -18,8 +18,8 @@
"manifest.json"
],
"scripts": {
"build": "tsc && rollup -c",
"dev": "concurrently \"tsc --watch\" \"rollup -cw\"",
"build": "rollup -c",
"dev": "rollup -cw",
"test": "jest",
"manifest": "node ./scripts/gen-collection-info.js"
},
@ -33,7 +33,6 @@
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "8.3.0",
"concurrently": "^8.2.2",
"doctrine": "^3.0.0",
"jest": "29.7.0",
"marked": "^4.0.10",

View File

@ -5,8 +5,6 @@
"moduleResolution": "node",
"lib": ["dom"],
"allowJs": true,
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "dist",
"esModuleInterop": true,
"types": ["node", "jest"]