Files
imphnen-frontend-service/apps/landing/tsconfig.json
T

45 lines
910 B
JSON
Raw Normal View History

2025-04-26 20:32:58 +07:00
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"jsx": "preserve",
"strict": true,
"noEmit": true,
"emitDeclarationOnly": false,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
2025-04-26 21:13:19 +07:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2025-04-26 20:32:58 +07:00
"allowJs": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
2025-04-26 21:13:19 +07:00
"plugins": [
{
"name": "next"
}
]
2025-04-26 20:32:58 +07:00
},
"include": [
"**/*.js",
"**/*.jsx",
2025-04-26 21:13:19 +07:00
"**/*.ts",
"**/*.tsx",
2025-04-26 20:32:58 +07:00
"../../apps/landing/.next/types/**/*.ts",
"../../dist/apps/landing/.next/types/**/*.ts",
2025-04-26 21:13:19 +07:00
"next-env.d.ts",
".next/types/**/*.ts"
2025-04-26 20:32:58 +07:00
],
2025-04-26 21:13:19 +07:00
"exclude": [
"node_modules",
"jest.config.ts",
"**/*.spec.ts",
"**/*.test.ts"
]
2025-04-26 20:32:58 +07:00
}