Ghost/ghost/i18n/tsconfig.json
Ronald Langeveld c53bd499c7
Added typescript declerations to i18n (#16894)
refs https://github.com/TryGhost/Team/issues/3307

Added TypeScript support and a new namespace for the `i18n` module. This
enables type checking and localisation for the new signup form component and future typescript projects that may need to add i18n support.
2023-05-31 10:37:21 +02:00

12 lines
279 B
JSON

{
"compilerOptions": {
"allowJs": true,
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "./build",
"skipLibCheck": true,
"esModuleInterop": true
},
"include": ["lib/**/*.js"],
"exclude": ["node_modules", "test"]
}