Skip to content

Instantly share code, notes, and snippets.

@TianyiLi
Last active June 3, 2017 12:29
Show Gist options
  • Save TianyiLi/01b55867f8f45c71387ba174b5fda841 to your computer and use it in GitHub Desktop.
Save TianyiLi/01b55867f8f45c71387ba174b5fda841 to your computer and use it in GitHub Desktop.
typescript normal config
{
"compileOnSave": false,
"buildOnSave": false,
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": false,
"sourceMap": false,
"outDir": "./dist/",
"typeRoots": [
"node_modules/@types"
],
"declaration": true,
"checkJs": true
},
"filesGlob": [
"./src/**/*.ts",
"./node_modules/**/*.d.ts"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment