Files
dashboard-icons/web/tsconfig.json
Thomas Camlong 50cc01e2c4 Remove bun-types from tsconfig.json
Removed bun-types from compiler options.

Signed-off-by: Thomas Camlong <thomas@ajnart.fr>
2025-12-23 11:57:12 +01:00

46 lines
785 B
JSON

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