-
-
Notifications
You must be signed in to change notification settings - Fork 21
Closed
Description
Just starting off with borp, and the first thing i've seen is that it has issues with typical tsconfig files.
1. Doesn't support comments
gives error:
❯ pnpm borp
SyntaxError: Expected double-quoted property name in JSON at position 50 (line 5 column 3)
at JSON.parse (<anonymous>)
at runWithTypeScript (file:///home/timbo/workspace/repo/node_modules/.pnpm/[email protected]/node_modules/borp/lib/run.js:59:27)
at async file:///home/timbo/workspace/repo/node_modules/.pnpm/[email protected]/node_modules/borp/borp.js:126:182. Doesn't support extends
{
"extends": "../tsconfig.json",
}gives error:
❯ pnpm borp
SyntaxError: Expected double-quoted property name in JSON at position 34 (line 3 column 1)
at JSON.parse (<anonymous>)
at runWithTypeScript (file:///home/timbo/workspace/repo/node_modules/.pnpm/[email protected]/node_modules/borp/lib/run.js:59:27)
at async file:///home/timbo/workspace/repo/node_modules/.pnpm/[email protected]/node_modules/borp/borp.js:126:18Metadata
Metadata
Assignees
Labels
No labels
{ "compilerOptions": { "incremental": true, // Enable latest features "lib": ["ESNext", "ESNext.Disposable"], "target": "ESNext", // Bundler mode "moduleResolution": "bundler", "allowImportingTsExtensions": true, // Some stricter flags "noUnusedLocals": true, "noUnusedParameters": true, "noPropertyAccessFromIndexSignature": true, "downlevelIteration": true // Ensure async iteration is supported } }