Files
br-os/tsconfig.json
2025-12-01 16:23:11 -06:00

26 lines
556 B
JSON

{
"compilerOptions": {
"target": "ES2021",
"module": "ESNext",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"outDir": "dist",
"jsx": "react-jsx",
"types": ["node", "vitest/globals", "@testing-library/jest-dom"]
},
"include": [
"src",
"scripts",
"lib",
"components",
"app",
"chronicles",
"vitest.config.ts"
],
"exclude": ["node_modules", "dist", "tests"]
}