tsconfig.json•1.02 kB
{
"compilerOptions": {
"target": "ES2021",
"lib": ["ES2021", "DOM"],
"jsx": "react-jsx",
"jsxImportSource": "@emotion/react",
"module": "ES6",
"moduleResolution": "bundler",
"sourceMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"types": ["@emotion/react/types/css-prop", "vitest/globals"],
"baseUrl": "./src",
"plugins": [
{
"name": "ts-plugin-sort-import-suggestions",
// Matches `@/`, `../` and `./`, move them up in the suggestions (This is the default config if you leave it empty)
"moveUpPatterns": ["@/", "\\.{1,2}/", "@phoenix/components"],
// Move `dist` down in the suggestions, by deafult it's `[]`
"moveDownPatterns": [
"recharts",
"dist",
"react-aria-components",
"@arize/components",
"@react-three/drei"
]
}
],
"paths": {
"@phoenix/*": ["*"]
}
}
}