31 lines
917 B
JSON
31 lines
917 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"types": ["webpack-env"],
|
|
"skipLibCheck": true,
|
|
// "typeRoots": ["./node_modules/@types/", "./types"],
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"services/*": ["src/services/*"],
|
|
"utils/*": ["src/common/utils/*"],
|
|
"components/*": ["src/common/components/*"],
|
|
"hooks/*": ["src/common/hooks/*"],
|
|
"filters/*": ["src/common/filters/*"]
|
|
},
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx"],
|
|
"exclude": ["node_modules"]
|
|
}
|