mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-04 03:09:39 -06:00
This configures the existing build tasks to use esbuild by default. If using the plain files is desired, passing `--bundle=false` will build using plain files and still produce a runnable system. This is only a basic build; a more efficient build is provided later when gulp is replaced by hereby.
17 lines
292 B
JSON
17 lines
292 B
JSON
{
|
|
"extends": "../tsconfig-base",
|
|
"compilerOptions": {
|
|
"types": [
|
|
"node"
|
|
],
|
|
"lib": [
|
|
"es6",
|
|
"scripthost"
|
|
]
|
|
},
|
|
"references": [
|
|
{ "path": "../compiler" }
|
|
],
|
|
"include": ["**/*"]
|
|
}
|