mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
28 lines
648 B
JSON
28 lines
648 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": false,
|
|
"noEmitOnError": true,
|
|
"outDir": "build/tsc-out",
|
|
"sourceMap": true,
|
|
"target": "es2017",
|
|
"lib": ["es2017","es2019.array", "es2018.promise", "dom", "dom.iterable"],
|
|
"types": ["web-ext-types"],
|
|
"experimentalDecorators": true,
|
|
"alwaysStrict": true,
|
|
"strictBindCallApply": true,
|
|
"noImplicitThis": true,
|
|
"strictFunctionTypes": true,
|
|
"baseUrl": "src/",
|
|
"paths": {
|
|
"@src/*": ["*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"exclude": [
|
|
"./src/**/*.test.ts",
|
|
"./src/lib/test_utils.ts"
|
|
]
|
|
}
|