diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..39335c0 --- /dev/null +++ b/.npmignore @@ -0,0 +1,2 @@ +/src +*.ts diff --git a/src/tsconfig/tsconfig.json b/src/tsconfig/tsconfig.json index 0410700..6b57cd4 100644 --- a/src/tsconfig/tsconfig.json +++ b/src/tsconfig/tsconfig.json @@ -24,7 +24,6 @@ "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, - "outDir": "dist", "paths": { "@app*": ["app/*"], "@src*": ["src/*"], "~/*": ["src/*"] }, "preserveSymlinks": true, "resolveJsonModule": true, diff --git a/tsconfig.json b/tsconfig.json index 2953bcc..32a5b3b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,8 @@ "extends": ["./src/tsconfig/tsconfig.node.json"], "compilerOptions": { "outDir": "./dist", - "rootDir": ".", + "rootDir": "./src", "typeRoots": ["./src/types", "eslint-plugin-tsdoc"] - } + }, + "exclude": ["prettier.config.js", "node_modules", "dist","eslint.config.js"] }