mirror of
https://github.com/netajam/obsidian_note_uid_generator.git
synced 2026-07-22 05:45:32 +00:00
30 lines
615 B
JSON
30 lines
615 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7"
|
|
]
|
|
},
|
|
"typeRoots": [
|
|
"./node_modules/@types", // Standard location for installed types
|
|
"./src/typings" // Your custom typings folder
|
|
],
|
|
"include": [
|
|
"**/*.ts","**/*.d.ts", "src/typings/obsidian.d.ts"
|
|
|
|
|
|
]
|
|
}
|