20 lines
480 B
JSON
20 lines
480 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"strict": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"types": ["node", "vite/client"],
|
||
|
|
"paths": {
|
||
|
|
"@workspace/i18n/*": ["./src/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["src", "lingui.config.ts"],
|
||
|
|
"exclude": ["node_modules", "dist", "locales"]
|
||
|
|
}
|