project-client/tsconfig.json

22 lines
620 B
JSON
Raw Normal View History

2023-04-05 23:56:33 +09:00
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": ["DOM", "DOM.Iterable", "esnext", "esnext.array", "esnext.asynciterable", "esnext.symbol"],
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"noImplicitAny": false,
"target": "ESNEXT",
"jsx": "preserve",
2023-04-20 06:15:07 +09:00
// we have duplicate electron types but it's w/e
"skipLibCheck": true,
2023-04-20 05:47:47 +09:00
"baseUrl": "./src/",
"typeRoots": ["./node_modules/@types", "./node_modules/@vencord"]
2023-04-05 23:56:33 +09:00
},
"include": ["src/**/*"]
}