lllin000_PaperForge/paperforge/plugin/tsconfig.json

23 lines
512 B
JSON
Raw Permalink Normal View History

2026-05-24 08:53:17 +00:00
{
"compilerOptions": {
"target": "ES2018",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"noEmit": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"lib": ["ES2018", "DOM"]
},
"include": ["src/**/*.ts"],
2026-05-24 08:53:17 +00:00
"exclude": ["node_modules"]
}