Adding src/compiler/tsconfig.json and src/services/tsconfig.json

This commit is contained in:
Anders Hejlsberg
2015-01-20 16:28:57 -08:00
parent fbfec8a07d
commit 45e700e515
2 changed files with 72 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"out": "../../built/local/tsc.js",
"sourceMap": true
},
"files": [
"core.ts",
"sys.ts",
"types.ts",
"scanner.ts",
"parser.ts",
"utilities.ts",
"binder.ts",
"checker.ts",
"emitter.ts",
"program.ts",
"commandLineParser.ts",
"tsc.ts",
"diagnosticInformationMap.generated.ts"
]
}