ultrawidify/tsconfig.json

31 lines
671 B
JSON
Raw Normal View History

2021-02-08 20:55:17 +01:00
{
"compilerOptions": {
2025-12-01 01:03:12 +01:00
"module": "esnext",
2021-03-14 02:32:14 +01:00
"moduleResolution": "node",
2021-02-08 20:55:17 +01:00
"outDir": "./ts-out",
"allowJs": true,
2025-12-01 01:03:12 +01:00
"target": "esnext",
"lib": ["esnext", "DOM", "DOM.Iterable"],
2021-02-08 23:23:15 +01:00
"types": [
"chrome",
"node"
],
"typeRoots": [
"node_modules/@types",
"node_modules/web-ext-types"
],
2025-12-01 01:03:12 +01:00
"baseUrl": "./src",
"allowSyntheticDefaultImports": true,
"skipDefaultLibCheck": true,
"esModuleInterop": true,
"paths": {
"@src/*": [ "*" ],
2026-01-07 01:42:37 +01:00
"@ui/*": [ "ui/*" ],
"@components/*": ["ui/components/*"],
"@res/*": ["ui/res"],
2025-12-01 01:03:12 +01:00
"@/*": [ "*" ]
}
2021-02-08 20:55:17 +01:00
},
2021-02-08 23:23:15 +01:00
"include": [ "./src/**/*" ],
2021-10-22 00:30:36 +02:00
}