Vencord/tsconfig.json

14 lines
386 B
JSON
Raw Normal View History

2022-08-29 00:25:27 +00:00
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": ["DOM", "esnext", "esnext.array", "esnext.asynciterable", "esnext.symbol"],
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"noImplicitAny": false,
"target": "ESNEXT"
},
2022-08-29 16:11:44 +00:00
"include": ["src/**/*.ts"]
2022-08-29 00:25:27 +00:00
}