tridactyl/tsconfig.json

18 lines
347 B
JSON
Raw Normal View History

2017-03-02 17:45:38 +00:00
{
"compilerOptions": {
"noImplicitAny": false,
"noEmitOnError": true,
"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-10-08 16:33:09 +01:00
"typeRoots": ["node_modules/@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
}