chore(build): update build process, commands, and packages

* chore(build): change build commands + tools

* refactor(sqlite): tslint

* chore(tsconfig): update tsconfig & change build command

* chore(build): change build commands
This commit is contained in:
Ibrahim Hadeed
2016-06-26 12:54:14 -04:00
committed by GitHub
parent ade3edace4
commit 3936f81d8f
5 changed files with 31 additions and 206 deletions

View File

@@ -1,23 +1,15 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"noImplicitAny": false,
"rootDir": ".",
"sourceMap": true,
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true
},
"filesGlob": [
"**/*.ts"
],
"exclude": [
"node_modules"
],
"compileOnSave": false,
"buildOnSave": false,
"atom": {
"rewriteTsconfig": false
}
"compilerOptions": {
"module": "commonjs",
"target": "ES5",
"sourceMap": true,
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"outDir": "dist"
},
"files": [
"typings/es6-shim/es6-shim.d.ts",
"src/index.ts"
]
}