2017-03-02 17:45:38 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2017-11-16 18:12:18 +00:00
|
|
|
"moduleResolution": "Node",
|
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,
|
2017-03-02 17:45:38 +00:00
|
|
|
"target": "ES2017",
|
2017-07-16 16:28:17 +01:00
|
|
|
"lib": ["ES2017","dom"],
|
2017-11-16 18:14:34 +00:00
|
|
|
"typeRoots": ["node_modules/@types", "node_modules/web-ext-types/"],
|
|
|
|
"alwaysStrict": true
|
2017-10-02 00:59:51 +01:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./src/**/*"
|
2017-10-05 01:53:02 +01:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"./src/**/*.test.ts"
|
2017-10-02 00:59:51 +01:00
|
|
|
]
|
2017-03-02 17:45:38 +00:00
|
|
|
}
|