Reactive-Resume/client/tsconfig.json

40 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2022-03-02 16:44:11 +00:00
{
2022-03-06 21:48:29 +00:00
"extends": "../tsconfig.base.json",
2022-03-02 16:44:11 +00:00
"compilerOptions": {
2022-03-06 21:48:29 +00:00
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
2022-03-02 16:44:11 +00:00
"allowJs": true,
2022-03-06 21:48:29 +00:00
"skipLibCheck": true,
"strict": true,
2022-03-02 16:44:11 +00:00
"forceConsistentCasingInFileNames": true,
"noEmit": true,
2022-03-06 21:48:29 +00:00
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
2022-03-02 16:44:11 +00:00
"resolveJsonModule": true,
"isolatedModules": true,
2022-03-06 21:48:29 +00:00
"jsx": "preserve",
2022-03-02 16:44:11 +00:00
"incremental": true,
2022-03-06 21:48:29 +00:00
"baseUrl": "./",
2022-03-02 16:44:11 +00:00
"paths": {
"@/components/*": ["components/*"],
"@/config/*": ["config/*"],
"@/constants/*": ["constants/*"],
"@/data/*": ["data/*"],
"@/i18n/*": ["i18n/*"],
2022-03-02 16:44:11 +00:00
"@/modals/*": ["modals/*"],
"@/pages/*": ["pages/*"],
"@/public/*": ["public/*"],
"@/services/*": ["services/*"],
"@/store/*": ["store/*"],
"@/styles/*": ["styles/*"],
"@/templates/*": ["templates/*"],
"@/types/*": ["types/*"],
"@/utils/*": ["utils/*"],
2022-03-06 21:48:29 +00:00
"@/wrappers/*": ["wrappers/*"]
2022-03-02 16:44:11 +00:00
}
},
2022-03-06 21:48:29 +00:00
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": [".next"]
2022-03-02 16:44:11 +00:00
}