Files
TypeScript/src/compiler/tsconfig.json
2015-10-28 17:24:24 -07:00

39 lines
998 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",
"scanner.ts",
"factory.ts",
"factory.generated.ts",
"parser.ts",
"utilities.ts",
"binder.ts",
"checker.ts",
"transform.ts",
"transforms/destructuring.ts",
"transforms/ts.ts",
"transforms/module/module.ts",
"transforms/module/system.ts",
"transforms/module/es6.ts",
"transforms/jsx.ts",
"transforms/es6.ts",
"declarationEmitter.ts",
"sourcemap.ts",
"printer.ts",
"emitter.ts",
"program.ts",
"commandLineParser.ts",
"tsc.ts",
"diagnosticInformationMap.generated.ts"
]
}