mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-15 11:35:42 -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.
35 lines
815 B
JSON
35 lines
815 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"outDir": "../built/local",
|
|
|
|
"pretty": true,
|
|
"lib": ["es2018"],
|
|
"target": "es2018",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"composite": true,
|
|
"noEmitOnError": true,
|
|
"emitDeclarationOnly": true,
|
|
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictPropertyInitialization": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"alwaysStrict": true,
|
|
"preserveConstEnums": true,
|
|
"newLine": "lf",
|
|
|
|
"types": []
|
|
}
|
|
}
|