31 lines
655 B
JSON
31 lines
655 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"outDir": "./ts-out",
|
|
"allowJs": true,
|
|
"target": "esnext",
|
|
"lib": ["esnext", "DOM"],
|
|
"types": [
|
|
"chrome",
|
|
"node"
|
|
],
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"node_modules/web-ext-types"
|
|
],
|
|
"baseUrl": "./src",
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipDefaultLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"paths": {
|
|
"@src/*": [ "*" ],
|
|
"@ui/*": [ "ui/*" ],
|
|
"@components/*": ["ui/components/*"],
|
|
"@res/*": ["ui/res"],
|
|
"@/*": [ "*" ]
|
|
}
|
|
},
|
|
"include": [ "./src/**/*" ],
|
|
}
|