The paths were updated for the alias '@pswui-lib' in both vite.config.ts and tsconfig.json files. The new path now points to 'lib.tsx' from 'lib'.
34 lines
782 B
JSON
34 lines
782 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"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|