mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-10 04:22:27 +10:00
37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"types": ["node", "jest"],
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"incremental": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/components/*": ["components/*"],
|
|
"@/config/*": ["config/*"],
|
|
"@/constants/*": ["constants/*"],
|
|
"@/i18n/*": ["i18n/*"],
|
|
"@/modals/*": ["modals/*"],
|
|
"@/pages/*": ["pages/*"],
|
|
"@/public/*": ["public/*"],
|
|
"@/services/*": ["services/*"],
|
|
"@/store/*": ["store/*"],
|
|
"@/styles/*": ["styles/*"],
|
|
"@/templates/*": ["templates/*"],
|
|
"@/types/*": ["types/*"],
|
|
"@/utils/*": ["utils/*"],
|
|
"@/wrappers/*": ["wrappers/*"],
|
|
"@reactive-resume/schema": ["../../libs/schema/src/index.ts"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx", "next-env.d.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|