23 lines
493 B
JSON
23 lines
493 B
JSON
{
|
|
"extends": "@typebot.io/tsconfig/base.json",
|
|
"include": ["src/**/*"],
|
|
"exclude": ["dist", "node_modules"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "dist",
|
|
"noEmit": false,
|
|
"emitDeclarationOnly": true,
|
|
"noEmitOnError": true,
|
|
"sourceMap": true
|
|
}
|
|
}
|