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