The path to the "lib.tsx" file in the include array in the TypeScript configuration file for the React package, tsconfig.json, has been adjusted for improved clarity and accuracy.
34 lines
788 B
JSON
34 lines
788 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2021",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2021", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
/* Path */
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@components/*": ["components/*"],
|
|
"@/*": ["src/*"],
|
|
"@pswui-lib": ["lib.tsx"]
|
|
}
|
|
},
|
|
"include": ["components", "src", "./lib.tsx"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|