mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
24 lines
536 B
JSON
24 lines
536 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "Node",
|
|
"noImplicitAny": false,
|
|
"noEmitOnError": true,
|
|
"outDir": "build/tsc-out",
|
|
"sourceMap": true,
|
|
"target": "ES2017",
|
|
"lib": ["ES2017","dom", "dom.iterable"],
|
|
"typeRoots": ["node_modules/@types", "node_modules/web-ext-types/"],
|
|
"experimentalDecorators": true,
|
|
"alwaysStrict": true,
|
|
"baseUrl": "src/",
|
|
"paths": {
|
|
"@src/*": ["*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"exclude": [
|
|
"./src/**/*.test.ts"
|
|
]
|
|
}
|