tridactyl/src/tsconfig.json

12 lines
321 B
JSON
Raw Normal View History

2017-03-02 17:45:38 +00:00
{
"compilerOptions": {
"noImplicitAny": false,
"noEmitOnError": true,
2017-09-24 23:50:23 +01:00
"outDir": "../build",
2017-03-02 17:45:38 +00:00
"target": "ES2017",
2017-07-16 16:28:17 +01:00
"lib": ["ES2017","dom"],
2017-09-24 23:50:23 +01:00
// Use the local copy, or a system installed version.
"typeRoots": ["@types", "node_modules/web-ext-types/", "/usr/lib/node_modules/web-ext-types"]
2017-03-02 17:45:38 +00:00
}
}