Files
zotero-notes-export-org/tsconfig.json
2026-02-17 21:25:46 +01:00

26 lines
633 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2022", "DOM"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": false,
"declarationMap": false,
"sourceMap": true,
"outDir": ".scaffold/build/addon/content/scripts",
"rootDir": "src",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"types": ["zotero-types"]
},
"include": ["src/**/*", "typings/**/*"],
"exclude": ["node_modules", ".scaffold"]
}