mirror of
https://github.com/denoland/deno.git
synced 2024-11-14 16:33:45 -05:00
6c42ded097
Fixes #876
19 lines
579 B
JSON
19 lines
579 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,
|
|
"module": "amd",
|
|
"removeComments": false,
|
|
"stripInternal": true
|
|
},
|
|
"files": [
|
|
"../node_modules/typescript/lib/lib.esnext.d.ts",
|
|
"./deno.ts",
|
|
"./globals.ts"
|
|
]
|
|
}
|