0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-29 08:58:01 -04:00
denoland-deno/js/tsconfig.generated.json
Ryan Dahl e7cab71574
runtime.ts refactor into compiler.ts (#564)
Adds compiler_test.ts
2018-08-22 17:17:26 -04:00

18 lines
550 B
JSON

{
// This configuration file provides the tsc configuration for generating
// definitions for the runtime, which are then inlined via the `js/assets.ts`
// module into the bundle to be available for type checking at runtime
// See also gen_declarations in //BUILD.gn
"extends": "../tsconfig.json",
"compilerOptions": {
"declaration": true,
"emitDeclarationOnly": true,
"stripInternal": true
},
"files": [
"../node_modules/typescript/lib/lib.esnext.d.ts",
"./compiler.ts",
"./deno.ts",
"./globals.ts"
]
}