Skip to content

Commit

Permalink
chore: switch to tsc
Browse files Browse the repository at this point in the history
  • Loading branch information
iCrawl committed Aug 18, 2019
1 parent 7f40998 commit 8c6986d
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 2,361 deletions.
31 changes: 0 additions & 31 deletions gulpfile.js

This file was deleted.

7 changes: 2 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"scripts": {
"set_version": "node set_version.js",
"prebuild": "yarn lint",
"build": "gulp",
"build": "rimraf dist && tsc",
"lint": "eslint src --ext .ts"
},
"dependencies": {
Expand Down Expand Up @@ -42,10 +42,7 @@
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.1.0",
"eslint-config-marine": "^4.2.0",
"fs-nextra": "^0.4.5",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.1",
"rimraf": "^3.0.0",
"typescript": "^3.5.3"
},
"optionalDependencies": {
Expand Down
11 changes: 6 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,16 @@
"esnext.symbol"
],
"declaration": false,
"sourceMap": true,
"inlineSourceMap": true,
"inlineSources": true,
"sourceRoot": "/",
"outDir": "dist",
"incremental": true,
"removeComments": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"alwaysStrict": true,
"allowSyntheticDefaultImports": true,
"pretty": true
},
"include": [
"./src"
]
}
}
Loading

0 comments on commit 8c6986d

Please sign in to comment.