Skip to content

Commit

Permalink
chore: disable incremental builds to workaround vercel/ncc#606
Browse files Browse the repository at this point in the history
  • Loading branch information
Gozala committed Oct 19, 2020
1 parent a103de6 commit 6a49b5d
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,20 @@
"target": "esnext",
"module": "commonjs",
"strict": true,
"types": ["node"],
"lib": ["ES2017"],
"incremental": true,
"types": [
"node"
],
"lib": [
"ES2017"
],
"esModuleInterop": true,
"moduleResolution": "node",
"outDir": "lib"
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules"
]
}

0 comments on commit 6a49b5d

Please sign in to comment.