mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 07:08:55 +02:00
22 lines
459 B
JSON
22 lines
459 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"baseUrl": ".",
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"tsBuildInfoFile": "dist/tsconfig.lib.tsbuildinfo",
|
|
"emitDeclarationOnly": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["DOM", "ES2015"],
|
|
"types": [
|
|
"vite/client"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"references": []
|
|
}
|