TypeScript/src/compiler/tsconfig.json

57 lines
1.5 KiB
JSON
Raw Normal View History

{
2017-01-12 16:46:55 +01:00
"extends": "../tsconfig-base",
"compilerOptions": {
2018-06-10 01:48:08 +02:00
"outFile": "../../built/local/compiler.js"
},
"references": [],
"files": [
"core.ts",
"performance.ts",
"types.ts",
"sys.ts",
"diagnosticInformationMap.generated.ts",
"scanner.ts",
"utilities.ts",
"parser.ts",
"commandLineParser.ts",
"moduleNameResolver.ts",
"binder.ts",
"symbolWalker.ts",
"checker.ts",
2016-02-04 03:11:32 +01:00
"factory.ts",
"visitor.ts",
"sourcemapDecoder.ts",
"transformers/utilities.ts",
"transformers/destructuring.ts",
"transformers/ts.ts",
"transformers/es2017.ts",
"transformers/esnext.ts",
"transformers/jsx.ts",
"transformers/es2016.ts",
2016-10-13 13:32:00 +02:00
"transformers/es2015.ts",
"transformers/es5.ts",
"transformers/generators.ts",
"transformers/module/module.ts",
"transformers/module/system.ts",
2016-10-13 13:32:00 +02:00
"transformers/module/es2015.ts",
"transformers/declarations/diagnostics.ts",
"transformers/declarations.ts",
2016-02-05 03:14:39 +01:00
"transformer.ts",
"sourcemap.ts",
"comments.ts",
"emitter.ts",
2017-09-26 22:34:56 +02:00
"watchUtilities.ts",
"program.ts",
"builderState.ts",
2017-07-25 01:57:49 +02:00
"builder.ts",
"resolutionCache.ts",
"moduleSpecifiers.ts",
2017-09-26 19:46:32 +02:00
"watch.ts",
2018-06-10 01:48:08 +02:00
"tsbuild.ts"
]
}