TypeScript/src/compiler/tsconfig.json

31 lines
712 B
JSON
Raw Normal View History

{
"compilerOptions": {
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"out": "../../built/local/tsc.js",
"sourceMap": true
},
"files": [
"types.ts",
"core.ts",
"sys.ts",
2015-10-31 02:10:31 +01:00
"diagnosticInformationMap.generated.ts",
"scanner.ts",
"parser.ts",
"utilities.ts",
"binder.ts",
"checker.ts",
2016-02-04 03:11:32 +01:00
"factory.ts",
"visitor.ts",
2016-02-05 03:14:39 +01:00
"transformer.ts",
2016-02-09 22:43:40 +01:00
"comments.ts",
"printer.ts",
"declarationEmitter.ts",
"emitter.ts",
"program.ts",
"commandLineParser.ts",
2015-10-31 02:10:31 +01:00
"tsc.ts"
]
}