mirror of
https://github.com/vale981/tridactyl
synced 2025-03-04 17:11:40 -05:00
19 lines
405 B
JSON
19 lines
405 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "Node",
|
|
"noImplicitAny": false,
|
|
"noEmitOnError": true,
|
|
"outDir": "build/tsc-out",
|
|
"sourceMap": true,
|
|
"target": "ES2017",
|
|
"lib": ["ES2017","dom"],
|
|
"typeRoots": ["node_modules/@types", "node_modules/web-ext-types/"],
|
|
"alwaysStrict": true
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"exclude": [
|
|
"./src/**/*.test.ts"
|
|
]
|
|
}
|