-
I'm having some issues getting Lion to play nice with Typescript. Does anyone have any example Typescript projects I could have a look at? |
Beta Was this translation helpful? Give feedback.
Answered by
tlouisse
Jul 26, 2024
Replies: 1 comment 3 replies
-
Hi, we don't have an example project, but I can share the tsconfig.json of our own extension layer if that helps you: {
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "NodeNext",
"lib": ["es2017", "dom"],
"allowJs": true,
"checkJs": true,
"strict": true,
"noImplicitThis": true,
"composite": true,
"emitDeclarationOnly": true,
"alwaysStrict": true,
"types": ["node", "mocha", "chai", "sinon"],
"esModuleInterop": true,
"suppressImplicitAnyIndexErrors": true,
"skipLibCheck": true,
"incremental": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true
},
"exclude": ["node_modules"]
} |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not sure if it solves your issue, but you forgot the entrpoint in your example. Can you try: