Revision 4c7e5e667bd30affa2e8c3bc8c65fd38e90912fe authored by Tobias Koppers on 21 April 2020, 12:06:17 UTC, committed by Tobias Koppers on 21 April 2020, 12:06:17 UTC
1 parent 4d7d318
Raw File
tsconfig.json
{
  "compilerOptions": {
    "target": "ES2017",
    "module": "commonjs",
    "lib": ["es2017", "dom"],
    "allowJs": true,
    "checkJs": true,
    "noEmit": true,
    "strict": false,
    "noImplicitThis": true,
    "alwaysStrict": true,
    "types": ["node"],
    "esModuleInterop": true
  },
  "include": [
    "declarations.d.ts",
    "declarations/*.d.ts",
    "schemas/*.json",
    "bin/*.js",
    "lib/**/*.js",
    "tooling/**/*.js"
  ]
}
back to top