Since the creators of this typings definition module have chosen not to include the chrome.app.*
definitions in the index.d.ts
file of the @types/chrome
module but instead separate them out into chrome-app.d.ts
, you'll need to explicitly reference it in the file that uses those APIs:
/// <reference types="chrome/chrome-app"/>
Note that this must be at the top of the file, per the documentation for triple-slash directives in TypeScript:
https://www.typescriptlang.org/docs/handbook/triple-slash-directives.html
Also note that it should not be necessary to add a "types": ["chrome"]
reference in your tsconfig.json
file, as the latest version of the TypeScript compiler should automatically import all typings definition modules found in node_modules/@types
. By adding this to your config, you are telling it to only import that one module. For more on this, you can refer to the config docs:
https://www.typescriptlang.org/docs/handbook/tsconfig-json.html
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…