mirror of
https://github.com/vale981/tridactyl
synced 2025-03-04 09:01:39 -05:00

This doesn't actually seem to work though - TridactylThemeDefault still appears in the root classes
30 lines
684 B
JSON
30 lines
684 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"module": "es2020",
|
|
"esModuleInterop": 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,
|
|
"baseUrl": "src/",
|
|
"types": ["@types/firefox-webext-browser"],
|
|
"paths": {
|
|
"@src/*": ["*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"exclude": [
|
|
"./src/**/*.test.ts",
|
|
"./src/lib/test_utils.ts"
|
|
]
|
|
}
|