ultrawidify/tsconfig.json

29 lines
587 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"],
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/*": [ "*" ],
"@csui/*": [ "csui/*" ],
"@/*": [ "*" ]
}
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
}