mirror of
https://github.com/tridactyl/tridactyl.git
synced 2026-09-10 07:16:33 -04:00
Most of the changed lines in this are from random breaking changes in typedoc meaning that lots of docstrings needed to be rewritten
32 lines
722 B
JSON
32 lines
722 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "bundler",
|
|
"module": "es2020",
|
|
"strict": false,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"noImplicitAny": false,
|
|
"noEmitOnError": true,
|
|
"outDir": "build/tsc-out",
|
|
"sourceMap": true,
|
|
"target": "es2019",
|
|
"lib": ["es2020", "dom", "dom.iterable"],
|
|
"experimentalDecorators": true,
|
|
"alwaysStrict": true,
|
|
"strictBindCallApply": true,
|
|
"noImplicitThis": true,
|
|
"strictFunctionTypes": true,
|
|
"types": ["@types/firefox-webext-browser"],
|
|
"paths": {
|
|
"@src/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"exclude": [
|
|
"./src/**/*.test.ts",
|
|
"./src/lib/test_utils.ts"
|
|
]
|
|
}
|