mirror of
https://github.com/carloscuesta/gitmoji.git
synced 2025-12-08 20:14:12 +00:00
* 🔧 Add typescript configuration files * ➕ Install typescript dependencies * ♻️ Migrate `lint-staged` to .ts(x) files * ♻️ Migrate `eslint` configuration to TypeScript * ♻️ Migrate `jest` configuration to TypeScript * 🔥 Remove `babel` configuration * ➖ Uninstall flow dependencies * 🔥 Remove `flow` configuration * 👷 Run `tsc` in `ci` workflow * 🔧 Update `pre-push` hook * ♻️ Migrate `pages/api` to TS * ♻️ Migrate `pages/_app` to TS * ♻️ Migrate `pages/_document` to TS * ♻️ Migrate `pages/about` to TS * ♻️ Migrate `pages/contributors` to TS * ♻️ Migrate `pages/index` to TS * ♻️ Migrate `pages/related-tools` to TS * ♻️ Migrate `components/Button` to TS * ♻️ Migrate `components/CarbonAd` to TS * ♻️ Migrate `components/ContributorsList` to TS * ♻️ Migrate `components/Icon` to TS * ♻️ Migrate `components/SEO` to TS * ♻️ Migrate `components/Layout` to TS * ♻️ Migrate `components/GitmojiList` to TS * ♻️ Migrate `__tests__/` pages to TS * 🏷️ Update `next-env.d.ts`
32 lines
577 B
JSON
32 lines
577 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "es6",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve"
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|