mirror of
https://github.com/lanice/obsidian-rant.git
synced 2026-07-22 06:10:26 +00:00
24 lines
444 B
JSON
24 lines
444 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7"
|
|
],
|
|
"outDir": "out-tsc",
|
|
"rootDir": "./src"
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts"
|
|
]
|
|
}
|