Files
Wdipl-react/tsconfig.json

34 lines
893 B
JSON
Raw Permalink Normal View History

2025-07-11 16:54:37 +05:30
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"allowJs": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": false,
/* Path mapping */
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
}
},
// "include": ["**/*.ts", "**/*.tsx", "postcss.config.mjs", "tailwind.config.js"],
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["vite.config.ts", "postcss.config.js", "tailwind.config.js"],
"references": [{ "path": "./tsconfig.node.json" }]
}