panatgithub_AnkiHeadingSync/tsconfig.json
2026-04-16 18:02:02 +08:00

26 lines
No EOL
474 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "Bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"types": [
"node",
"vitest/globals"
],
"paths": {
"@/*": [
"./src/*"
]
}
},
"include": [
"main.ts",
"src/**/*.ts",
"vitest.config.ts"
]
}