Files
d8d-vite-starter/tsconfig.json
D8D Developer d371fbaefa init
2025-06-27 03:31:29 +00:00

28 lines
566 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"incremental": true,
"strict": true,
"skipLibCheck": true,
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"types": [
"vite/client"
],
"jsx": "react-jsx",
"jsxImportSource": "react",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
},
"include": ["src/**/*.ts", "src/**/*.tsx"],
"exclude": ["node_modules"]
}