19 lines
389 B
JSON
19 lines
389 B
JSON
![]() |
{
|
||
|
"extends": "tsconfig/base.json",
|
||
|
"include": ["src/**/*"],
|
||
|
"exclude": ["dist", "node_modules"],
|
||
|
"compilerOptions": {
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
"@/*": ["src/*"]
|
||
|
},
|
||
|
"jsx": "preserve",
|
||
|
"jsxImportSource": "solid-js",
|
||
|
"module": "ESNext",
|
||
|
"target": "ESNext",
|
||
|
"declaration": true,
|
||
|
"declarationDir": "dts",
|
||
|
"emitDeclarationOnly": true
|
||
|
}
|
||
|
}
|