2017-03-02 17:45:38 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"noEmitOnError": true,
|
2017-10-02 00:59:51 +01:00
|
|
|
// outDir not used by webpack, just for debugging.
|
|
|
|
"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-09-30 12:34:50 +01:00
|
|
|
"typeRoots": ["@types", "node_modules/web-ext-types/"]
|
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
|
|
|
}
|