From 79cecca43bf659353f6e6f503c6c255cf3f899fd Mon Sep 17 00:00:00 2001 From: Research Assistant Date: Sun, 24 May 2026 16:53:17 +0800 Subject: [PATCH] chore(plugin): add tsconfig.json --- paperforge/plugin/tsconfig.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 paperforge/plugin/tsconfig.json diff --git a/paperforge/plugin/tsconfig.json b/paperforge/plugin/tsconfig.json new file mode 100644 index 00000000..dfd3f8c5 --- /dev/null +++ b/paperforge/plugin/tsconfig.json @@ -0,0 +1,22 @@ +{ + "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", "tests/**/*.ts"], + "exclude": ["node_modules"] +}