blob: 8f2c2664214c2bc32f59814be15842df9803db99 [file] [log] [blame]
Primiano Tucci3faad742018-05-16 19:30:48 +01001{
Primiano Tucci3552aaf2020-01-14 20:20:52 +00002 "extends": "./tsconfig.base.json",
Hector Dearman3d858cc2018-05-24 17:09:48 +01003 "include": [ "src/" ],
Hector Dearmanf5fd1e12018-06-12 18:23:49 +01004 "exclude": [
5 "./node_modules/",
Primiano Tucci3552aaf2020-01-14 20:20:52 +00006 "./src/service_worker/",
Hector Dearmanf5fd1e12018-06-12 18:23:49 +01007 "./src/gen/"
8 ],
Primiano Tucci3faad742018-05-16 19:30:48 +01009 "compilerOptions": {
Deepanjan Roy75b46a92018-07-24 09:11:29 -040010 "lib": [
11 "dom", // Need to be explicitly mentioned now since we're overriding default included libs.
12 "es2018", // Need this to use Object.values.
13 ],
Isabelle Taylorc2a13642019-08-06 14:14:59 +010014 "paths": {
Hector Dearman5bb5c562019-12-05 12:03:34 +000015 "*" : ["*", "./node_modules/@tsundoku/micromodal_types/*"]
Isabelle Taylorc2a13642019-08-06 14:14:59 +010016 },
Primiano Tucci3faad742018-05-16 19:30:48 +010017 }
18}