ultrawidify/tsconfig.json
2026-01-07 01:42:37 +01:00

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/**/*" ],
}