-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa1d3d7
commit 5447ce3
Showing
2 changed files
with
57 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,38 @@ | ||
{ | ||
"name": "esbuild-plugin-autoload", | ||
"module": "src/index.ts", | ||
"devDependencies": { | ||
"@types/bun": "latest", | ||
"elysia": "^1.0.23", | ||
"elysia-autoload": "^0.2.4" | ||
}, | ||
"peerDependencies": { | ||
"typescript": "^5.0.0" | ||
}, | ||
"type": "module" | ||
} | ||
"name": "esbuild-plugin-autoload", | ||
"type": "module", | ||
"version": "0.1.0", | ||
"author": { | ||
"name": "kravets" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/kravetsone/esbuild-plugin-autoload" | ||
}, | ||
"description": "Bun/esbuild plugin for work with autoload at runtime", | ||
"keywords": [ | ||
"esbuild-plugin", | ||
"bun-plugin", | ||
"autoload", | ||
"elysia" | ||
], | ||
"module": "./dist/index.js", | ||
"exports": { | ||
".": "./dist/index.js" | ||
}, | ||
"types": "./dist/index.d.ts", | ||
"scripts": { | ||
"prepublishOnly": "bun build.ts" | ||
}, | ||
"devDependencies": { | ||
"@types/bun": "latest", | ||
"elysia": "^1.0.23", | ||
"elysia-autoload": "^0.2.4" | ||
}, | ||
"peerDependencies": { | ||
"typescript": "^5.0.0" | ||
}, | ||
"files": [ | ||
"dist" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,23 @@ | ||
{ | ||
"compilerOptions": { | ||
// Enable latest features | ||
"lib": ["ESNext", "DOM"], | ||
"target": "ESNext", | ||
"module": "ESNext", | ||
"moduleDetection": "force", | ||
"jsx": "react-jsx", | ||
"allowJs": true, | ||
"compilerOptions": { | ||
"target": "ESNext", | ||
"module": "ESNext", | ||
"moduleDetection": "force", | ||
"allowJs": true, | ||
|
||
// Bundler mode | ||
"moduleResolution": "bundler", | ||
"allowImportingTsExtensions": true, | ||
"verbatimModuleSyntax": true, | ||
"noEmit": true, | ||
|
||
// Best practices | ||
"strict": true, | ||
"skipLibCheck": true, | ||
"noFallthroughCasesInSwitch": true, | ||
|
||
// Some stricter flags (disabled by default) | ||
"noUnusedLocals": false, | ||
"noUnusedParameters": false, | ||
"noPropertyAccessFromIndexSignature": false | ||
} | ||
"declaration": true, | ||
"verbatimModuleSyntax": true, | ||
"allowSyntheticDefaultImports": true, | ||
// Best practices | ||
"strict": true, | ||
"noFallthroughCasesInSwitch": true, | ||
"skipLibCheck": true, | ||
// Some stricter flags (disabled by default) | ||
"noUnusedLocals": false, | ||
"noUnusedParameters": false, | ||
"noPropertyAccessFromIndexSignature": false, | ||
"baseUrl": "./src", | ||
"outDir": "./dist" | ||
}, | ||
"include": ["src"] | ||
} |