15 lines
409 B
JSON
15 lines
409 B
JSON
|
|
{
|
||
|
|
"extends": "./tsconfig.lib.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.tsbuildinfo",
|
||
|
|
"jsx": "preserve",
|
||
|
|
"jsxFactory": "h",
|
||
|
|
"jsxFragmentFactory": "Fragment",
|
||
|
|
"jsxImportSource": "vue",
|
||
|
|
"rootDir": "./src",
|
||
|
|
"outDir": "./dist"
|
||
|
|
},
|
||
|
|
"include": ["src/**/*", "types/**/*"],
|
||
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/__tests__/*"]
|
||
|
|
}
|