Skip to content

Instantly share code, notes, and snippets.

@KerryRitter
Created March 10, 2017 15:55
Show Gist options
  • Save KerryRitter/bdb29fc7e7bd8ec459da0057094f9319 to your computer and use it in GitHub Desktop.
Save KerryRitter/bdb29fc7e7bd8ec459da0057094f9319 to your computer and use it in GitHub Desktop.
tsconfig with typeRoots
{
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "none",
"moduleResolution": "node",
"sourceMap": true,
"target": "es5",
"inlineSources": true,
"removeComments": false,
"noImplicitAny": false,
"typeRoots": [ "@types" ],
"types": [
"jquery"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment