tridactyl/tsconfig.json

19 lines
389 B
JSON
Raw Normal View History

2017-03-02 17:45:38 +00:00
{
"compilerOptions": {
"noImplicitAny": false,
"noEmitOnError": true,
// 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"],
"typeRoots": ["@types", "node_modules/web-ext-types/"]
},
"include": [
"./src/**/*"
2017-10-05 01:53:02 +01:00
],
"exclude": [
"./src/**/*.test.ts"
]
2017-03-02 17:45:38 +00:00
}