26 lines
633 B
JSON
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"]
|
|
}
|