typeof window ==“ undefined”在使用ts-node时抛出错误

时间:2020-05-18 13:55:12

标签: javascript node.js typescript typeof ts-node

我有一些代码正在使用typeof window == "undefined"来检查是否存在浏览器环境。当我使用ts-node启动此代码时,我得到的是:

typings/Console.ts:36:10 - error TS2304: Cannot find name 'window'.

36      typeof window == "undefined"
               ~~~~~~

AFAIK typeof是一种运算符,可以安全地使用未定义的变量,并且在浏览器和NodeJS环境中均能很好地工作。但是,就我开始将其与ts-node一起使用而言,它开始抛出。

我的tsconfig.json

{
    "compilerOptions": {
        "module": "CommonJS",
        "target": "es5",
        "moduleResolution": "node",
        "baseUrl": "src",
        "allowSyntheticDefaultImports": true,
        "noImplicitAny": true,
        "strict": false,
        "sourceMap": true,
        "traceResolution": true,
        "experimentalDecorators": true,
        "emitDecoratorMetadata": true,
        "strictNullChecks": true,

        "allowJs": false,
        "declaration": false,
        "removeComments": true,
        "noLib": false,
        "preserveConstEnums": true,
        "suppressImplicitAnyIndexErrors": true,
        "types": [ "node" ],
        "lib": [ "es6" ],
        "downlevelIteration": true,
        "resolveJsonModule": true,
        "typeRoots": [
            "../node_modules/@types"
        ]
    }
}

那么,诀窍是什么? 预先感谢!

2 个答案:

答案 0 :(得分:1)

尝试在tsconfig“ DOM”中添加到lib

答案 1 :(得分:0)

对我来说,首先将变量声明为TypeScript是可行的,所以:

declare var window;

if(typeof window == "undefined"){
// code
}