* chore: create i18n for platform libraries * fixup! chore: create i18n for platform libraries * refactor: use previous version of i18n * Revert "refactor: use previous version of i18n" This reverts commit 0181ae1018d99ea6d5455d6dde5f3727e70422e1. * refactor: use previous version of i18n --------- Co-authored-by: supalarry <laurisskraucis@gmail.com>
29 lines
633 B
JSON
29 lines
633 B
JSON
{
|
|
"extends": "@calcom/tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"target": "ES2021",
|
|
"jsx": "react-jsx",
|
|
"resolveJsonModule": true,
|
|
"types": ["jest"],
|
|
"outDir": "./dist",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@calcom/lib/server/i18n": ["./i18n.ts"]
|
|
}
|
|
},
|
|
"include": [".", "../../types/*.d.ts"],
|
|
"exclude": [
|
|
"dist",
|
|
"build",
|
|
"**/node_modules/**",
|
|
"**/*.test.*",
|
|
"**/__mocks__/*",
|
|
"**/__tests__/*",
|
|
"../../lib/hooks/useTheme.tsx",
|
|
"../../lib/getBrandColours.tsx"
|
|
]
|
|
}
|