Replies: 1 comment 1 reply
-
With some patient help from folks more familiar with TypeScript than me, I have this {
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "ESNext",
"strict": true,
"noImplicitAny": true,
"moduleResolution": "Node",
"lib": ["ESNext"],
"paths": {
},
"typeRoots": [
"./typings"
]
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to switch to typescript for my moddable projects and am relatively new to typescript. Can anyoneprovide some pointers or samples to get started with the configuration? I'm using vscode. Specifically:
tsconfig.json
to put into a project so vscode finds all the right stuff?I'm currently a bit stuck on how to make an import like
import Timer from "timer"
work in vscodeBeta Was this translation helpful? Give feedback.
All reactions