mirror of
https://github.com/vale981/tridactyl
synced 2025-03-04 17:11:40 -05:00
18 lines
389 B
JSON
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"
|
|
]
|
|
}
|