Files
uTab/tsconfig.json
2025-04-18 09:52:27 -04:00

18 lines
468 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"rootDir": ".",
"sourceMap": true,
"jsx": "react-jsx",
"moduleResolution": "node",
"noImplicitAny": true,
"allowSyntheticDefaultImports": true
},
"include": ["./src/**/*"],
"exclude": ["dist", "node_modules"]
}