2018-08-07 16:27:31 -04:00
|
|
|
{
|
|
|
|
// 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,
|
2018-08-12 14:27:54 -04:00
|
|
|
"emitDeclarationOnly": true,
|
2018-09-01 10:45:26 -04:00
|
|
|
"module": "amd",
|
2018-09-04 15:23:38 -04:00
|
|
|
"removeComments": false,
|
2018-08-12 14:27:54 -04:00
|
|
|
"stripInternal": true
|
2018-08-07 16:27:31 -04:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"../node_modules/typescript/lib/lib.esnext.d.ts",
|
|
|
|
"./deno.ts",
|
|
|
|
"./globals.ts"
|
|
|
|
]
|
|
|
|
}
|