Skip to content

Instantly share code, notes, and snippets.

@OlivierAlbertini
Last active January 15, 2017 21:08
Show Gist options
  • Save OlivierAlbertini/21c39129d150c6fbdc6d0f0f1c95fe92 to your computer and use it in GitHub Desktop.
Save OlivierAlbertini/21c39129d150c6fbdc6d0f0f1c95fe92 to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"target": "es5",
"outDir": "js",
"module": "commonjs",
"sourceMap": true,
"watch": true
},
"files": [
"app.ts"
]
}
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["es2015", "dom"],
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"typeRoots": [
"../../node_modules/@types/"
],
"filesGlob": [
"./src/**/*.ts",
"./test/**/*.ts",
"./typings/browser.d.ts",
"./jspm_packages/**/*.d.ts"
]
},
"compileOnSave": true,
"exclude": [
"node_modules/*",
"**/*-aot.ts"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment