apprev/tsconfig.json
2025-05-16 06:20:36 -04:00

30 lines
659 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": [
"esnext",
"esnext.array",
"esnext.asynciterable",
"esnext.symbol"
],
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"noImplicitAny": false,
"target": "ESNEXT",
"baseUrl": ".",
"paths": {
"~/*": ["src/*"],
"~/components": ["components-jsx/index.ts"]
},
"skipLibCheck": true,
"resolveJsonModule": true,
"jsx": "preserve",
"jsxFactory": "createElement",
"jsxFragmentFactory": "Fragment",
"allowJs": true,
"outDir": "whofuckingcaresdude"
},
"include": ["src/**/*", "components-jsx/**/*"]
}