xerexjs
Version:
A simple notification system for NextJS/ReactJS with real-time capabilities
29 lines (28 loc) • 631 B
JSON
{
"compilerOptions": {
"outDir": "dist",
"rootDir": "src", // ✅ Tells TypeScript where source files are
"module": "CommonJS",
"moduleResolution": "node",
"lib": [
"ES6",
"DOM",
"ES2015",
"ESNext"
],
"target": "ES6",
"jsx": "react-jsx",
"declaration": true,
"declarationDir": "dist", // ✅ Ensures .d.ts files are in dist/
"esModuleInterop": true,
"skipLibCheck": true,
"strict": true,
"types": ["@types/node"],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src"],
"exclude": ["node_modules", "dist"]
}