mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-15 21:36:50 -05:00
Remove extra dependency + build smaller tsc.js into lkg
This commit is contained in:
8
src/compiler/tsconfig.release.json
Normal file
8
src/compiler/tsconfig.release.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outFile": "../../built/local/compiler.release.js",
|
||||
"removeComments": true,
|
||||
"preserveConstEnums": false
|
||||
}
|
||||
}
|
||||
17
src/tsc/tsconfig.release.json
Normal file
17
src/tsc/tsconfig.release.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"extends": "../tsconfig-base",
|
||||
"compilerOptions": {
|
||||
"outFile": "../../lib/tsc.js",
|
||||
"stripInternal": true,
|
||||
"preserveConstEnums": false,
|
||||
"declaration": false,
|
||||
"declarationMap": false,
|
||||
"composite": false
|
||||
},
|
||||
"files": [
|
||||
"tsc.ts"
|
||||
],
|
||||
"references": [
|
||||
{ "path": "../compiler/tsconfig.release.json", "prepend": true }
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user