24 lines
580 B
JSON
24 lines
580 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "esnext",
|
||
|
"module": "esnext",
|
||
|
"strict": true,
|
||
|
"jsx": "preserve",
|
||
|
"importHelpers": true,
|
||
|
"moduleResolution": "node",
|
||
|
"experimentalDecorators": true,
|
||
|
"esModuleInterop": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"sourceMap": true,
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
"@/*": ["src/*"]
|
||
|
},
|
||
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
||
|
},
|
||
|
"include": [
|
||
|
"types/*.ts",
|
||
|
],
|
||
|
"exclude": ["node_modules"]
|
||
|
}
|