mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00

Tests run with nodejs + jest types, while the web extension code runs with browser + web-ext type roots.
26 lines
584 B
JSON
26 lines
584 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": false,
|
|
"noEmitOnError": true,
|
|
"outDir": "build/tsc-out",
|
|
"sourceMap": true,
|
|
"target": "es2017",
|
|
"lib": ["es2017", "es2019.array", "es2018.promise", "dom", "dom.iterable"],
|
|
"typeRoots": ["node_modules/@types"],
|
|
"types": ["jest", "node"],
|
|
"experimentalDecorators": true,
|
|
"alwaysStrict": true,
|
|
"baseUrl": "src/",
|
|
"paths": {
|
|
"@src/*": ["*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"exclude": [
|
|
"./src/**/*.test.ts"
|
|
]
|
|
}
|