23 lines
463 B
JSON
23 lines
463 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"include": [
|
|
"env.d.ts",
|
|
"../types/**/*.ts",
|
|
"../utils/**/*.ts",
|
|
"../shared-components/**/*.ts",
|
|
"../shared-components/**/*.tsx",
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"compilerOptions": {
|
|
"jsx": "react",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./*"],
|
|
"~/types/*": ["../types/*"],
|
|
"~/utils/*": ["../utils/*"],
|
|
"~/shared-components/*": ["../shared-components/*"],
|
|
}
|
|
}
|
|
}
|