Files
telenetsystems-2026-02-06-v1/tsconfig.json
1elle1 5c3860b631 chore: update TypeScript configuration and add Tailwind CSS support
- Updated `next-env.d.ts` to remove unnecessary import and update TypeScript documentation link.
- Added `@tailwindcss/postcss` dependency in `package.json` and `package-lock.json`.
- Created `globals.css` with Tailwind CSS directives and custom theme variables.
- Modified `tsconfig.json` to change JSX setting from `react-jsx` to `preserve`.
2026-02-06 14:05:17 +01:00

42 lines
698 B
JSON

{
"compilerOptions": {
"target": "ES2017",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": false,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": [
"./*"
]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}