Announcement by @perbergland: This package is now deprecated and stuck on version 0.9.15 with Typescript 3.7.
For newer versions, you can migrate to refapp:typescript 0.9.16 or later or check if there are other forks available, please check via https://techgaun.github.io/active-forks/index.html#Adornis/typescript.
TYPESCRIPT_EXTERNAL_PATH
can be set to the path of a typescript node package anywhere on your computer to be able to use a different version that is used in the package by default -- only works when you clone locally, ask Meteor why, I don't knowTYPESCRIPT_DISABLE_WARNINGS
can be used to only show lifecycle information and errors
TypeScript files are compiled into ES5 and CommonJS modules by default.
Default compiler options as JSON:
{
"module": "commonjs",
"target": "es5",
"moduleResolution": "node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"sourceMap": true,
"importHelpers": true
}
This package uses (directly or indirectly) another package which is worth mentioning:
typescript-compiler - exports a Meteor TypeScript compiler that implements Meteor compiler API to compile TypeScript source code incrementally on file changes.
Thanks @barbatus for barbatus:typescript, which this package is based on, even as far as copying some parts. Adornis doesn't claim any ownership of this code, we have merely taken over the repository after fruitless attempts to contact barbatus. We love you, if you want to take this repo back, contact @yorrd.
MIT