tridactyl/tsconfig.json
2017-10-05 01:53:02 +01:00

18 lines
389 B
JSON

{
"compilerOptions": {
"noImplicitAny": false,
"noEmitOnError": true,
// outDir not used by webpack, just for debugging.
"outDir": "build/tsc-out",
"sourceMap": true,
"target": "ES2017",
"lib": ["ES2017","dom"],
"typeRoots": ["@types", "node_modules/web-ext-types/"]
},
"include": [
"./src/**/*"
],
"exclude": [
"./src/**/*.test.ts"
]
}