TypeScript/src/compiler/tsconfig.json
2016-02-04 18:14:39 -08:00

28 lines
662 B
JSON

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