Last active
February 1, 2023 07:05
-
-
Save achingbrain/dce4b1242406d295fed05399d9d85484 to your computer and use it in GitHub Desktop.
TS project
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
// /src/index.ts | |
import * as multiformats from "multiformats"; | |
console.info(multiformats) |
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
{ | |
"name": "ts-again", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"type": "module", | |
"author": "", | |
"license": "ISC", | |
"devDependencies": { | |
"typescript": "^4.9.5" | |
}, | |
"dependencies": { | |
"multiformats": "^11.0.1" | |
} | |
} |
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
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "ESNext", | |
"module": "ESNext", | |
"moduleResolution": "NodeNext", | |
"lib": ["ESNext", "Dom"], | |
"noImplicitReturns": true, | |
"noUnusedLocals": false, | |
"outDir": "dist", | |
"sourceMap": true, | |
"strict": true, | |
"skipLibCheck": true, | |
"esModuleInterop": true, | |
}, | |
"compileOnSave": true, | |
"include": [ | |
"./src", | |
"bin", | |
], | |
"exclude": ["node_modules"], | |
"ts-node": { | |
"transpileOnly": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment