diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..d2d36a2 --- /dev/null +++ b/.npmignore @@ -0,0 +1,6 @@ +.vscode/ +.github/ +.editorconfig +.eslintignore +.eslintrc.js +.pnpm-debug.log diff --git a/tsconfig.json b/tsconfig.json index 62f562b..6f95136 100755 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,18 +1,24 @@ { - "compilerOptions": { - "baseUrl": ".", - "module": "ESNext", - "target": "ESNext", - "lib": ["DOM", "ESNext"], - "strict": true, - "esModuleInterop": true, - "incremental": false, - "skipLibCheck": true, - "moduleResolution": "node", - "resolveJsonModule": true, - "noUnusedLocals": true, - "strictNullChecks": true, - "forceConsistentCasingInFileNames": true, - }, - "exclude": ["*/**/dist", "node_modules"] -} + "compilerOptions": { + "baseUrl": ".", + "module": "ESNext", + "target": "ESNext", + "lib": [ + "DOM", + "ESNext" + ], + "strict": true, + "esModuleInterop": true, + "incremental": false, + "skipLibCheck": true, + "moduleResolution": "node", + "resolveJsonModule": true, + "noUnusedLocals": true, + "strictNullChecks": true, + "forceConsistentCasingInFileNames": true, + }, + "exclude": [ + "/dist", + "node_modules" + ] +} \ No newline at end of file