mirror of
https://github.com/viktoruj/obsidian-cloud-kms.git
synced 2026-07-22 06:56:21 +00:00
29 lines
679 B
JSON
29 lines
679 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2021",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"lib": ["ES2021", "DOM"],
|
||
|
|
"strict": true,
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"strictNullChecks": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": "./src",
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["src/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts"],
|
||
|
|
"exclude": ["node_modules", "dist", "tests"]
|
||
|
|
}
|