blob: e9341ca201a25a555d49e7ba2a049513facdb7bd [file] [log] [blame]
Sean Condondfc6dba2019-11-09 11:50:23 +00001{
Sean Condondfc6dba2019-11-09 11:50:23 +00002 "compilerOptions": {
Sean Condon98b6ddb2019-12-24 08:07:40 +00003 // Allow uses of these JS APIs
Sean Condondfc6dba2019-11-09 11:50:23 +00004 "lib": [
Sean Condon98b6ddb2019-12-24 08:07:40 +00005 "dom",
6 "es5",
7 "es2015.collection",
8 "es2015.iterable",
9 "es2015.promise",
10 "es2017",
11 "es2017.object"
12 ],
13 // Permit decorator syntax
14 "experimentalDecorators": true,
15 // Don't scan the node_modules/@types folder for ambient types.
16 // This would force us to have all the types in the dependencies of
17 // each library.
18 // Instead we'll be explicit about declaring ambient type dependencies
19 // using the ///<reference types=""/> syntax.
20 "types": []
Sean Condondfc6dba2019-11-09 11:50:23 +000021 }
22}