ultrawidify/tsconfig.json

18 lines
307 B
JSON
Raw Permalink Normal View History

2021-02-08 20:55:17 +01:00
{
"compilerOptions": {
2021-03-14 02:32:14 +01:00
"moduleResolution": "node",
2021-02-08 20:55:17 +01:00
"outDir": "./ts-out",
"allowJs": true,
2021-02-08 23:23:15 +01:00
"target": "es2018",
"types": [
"chrome",
"node"
],
"typeRoots": [
"node_modules/@types",
"node_modules/web-ext-types"
],
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
}