Vencord/tsconfig.json

32 lines
848 B
JSON
Raw Permalink Normal View History

2022-08-29 00:25:27 +00:00
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": [
"DOM",
"DOM.Iterable",
"esnext",
"esnext.array",
"esnext.asynciterable",
"esnext.symbol"
],
2022-08-29 00:25:27 +00:00
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"noImplicitAny": false,
2022-08-29 18:27:47 +00:00
"target": "ESNEXT",
"jsx": "preserve",
"baseUrl": "./src/",
"paths": {
"@api/*": ["./api/*"],
"@components/*": ["./components/*"],
"@utils/*": ["./utils/*"],
"@webpack/types": ["./webpack/common/types"],
"@webpack/common": ["./webpack/common"],
"@webpack": ["./webpack/webpack"]
}
2022-08-29 00:25:27 +00:00
},
2022-08-29 18:27:47 +00:00
"include": ["src/**/*"]
2022-08-29 00:25:27 +00:00
}