If I use the `@Language` annotation, will my proje...
# getting-started
k
If I use the
@Language
annotation, will my project be able to be compiled by those using VSCode? I'm unsure because it's in a package that starts with
org.intellij
.
h
Yes, just make sure
org.jetbrains:annotations
is in your dependencies.
k
Thanks. I've just noticed it's a transitive dependency of Kotlin stdlib anyway.
👌 1
j
You can just use
// language=json
too