2017-03-02 17:45:38 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-09-16 21:47:26 -05:00
|
|
|
"moduleResolution": "node",
|
2021-07-04 19:13:37 +02:00
|
|
|
"module": "es2020",
|
2021-04-10 21:44:59 +02:00
|
|
|
"esModuleInterop": true,
|
2017-03-02 17:45:38 +00:00
|
|
|
"noImplicitAny": false,
|
|
|
|
"noEmitOnError": true,
|
2017-10-02 00:59:51 +01:00
|
|
|
"outDir": "build/tsc-out",
|
|
|
|
"sourceMap": true,
|
2021-04-29 17:51:38 +02:00
|
|
|
"target": "es2019",
|
2021-07-04 19:13:37 +02:00
|
|
|
"lib": ["es2020", "dom", "dom.iterable"],
|
2018-09-03 03:13:42 -07:00
|
|
|
"experimentalDecorators": true,
|
2018-09-29 15:29:51 -07:00
|
|
|
"alwaysStrict": true,
|
2019-10-20 13:09:21 +02:00
|
|
|
"strictBindCallApply": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"strictFunctionTypes": true,
|
2019-10-18 13:05:37 +02:00
|
|
|
"baseUrl": "src/",
|
2021-05-02 12:22:48 +01:00
|
|
|
"types": ["@types/firefox-webext-browser"],
|
2019-10-18 13:05:37 +02:00
|
|
|
"paths": {
|
|
|
|
"@src/*": ["*"]
|
|
|
|
}
|
2017-10-02 00:59:51 +01:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./src/**/*"
|
2017-10-05 01:53:02 +01:00
|
|
|
],
|
|
|
|
"exclude": [
|
2019-10-18 13:05:37 +02:00
|
|
|
"./src/**/*.test.ts",
|
|
|
|
"./src/lib/test_utils.ts"
|
2017-10-02 00:59:51 +01:00
|
|
|
]
|
2017-03-02 17:45:38 +00:00
|
|
|
}
|