mirror of
https://github.com/mssoftjp/obsidian-voice-input.git
synced 2026-07-22 06:44:48 +00:00
18 lines
328 B
JSON
18 lines
328 B
JSON
|
|
{
|
||
|
|
"extends": "./tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"module": "CommonJS",
|
||
|
|
"moduleResolution": "Node",
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"types": ["jest", "node"]
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src/**/*",
|
||
|
|
"tests/**/*"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"main.js"
|
||
|
|
]
|
||
|
|
}
|