File size: 687 Bytes
8fcf809
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "compilerOptions": {
    "downlevelIteration": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "importHelpers": true,
    "inlineSourceMap": true,
    "lib": ["dom", "es2020", "dom.iterable"],
    "moduleResolution": "node",
    "noFallthroughCasesInSwitch": true,
    "noImplicitReturns": true,
    "skipLibCheck": true,
    "strict": true,
    // Don't scan the node_modules/@types folder for ambient types.
    // This would force us to have all the types in the dependencies of
    // each library.
    // Instead we'll be explicit about declaring ambient type dependencies
    // using the ///<reference types=""/> syntax.
    "types": []
  }
}