Skip to content

Commit

Permalink
feat(infra): rework project struct, add TSC with config
Browse files Browse the repository at this point in the history
  • Loading branch information
zhibirc committed Nov 28, 2023
1 parent 3647611 commit f105c42
Show file tree
Hide file tree
Showing 23 changed files with 26 additions and 1 deletion.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"author": {
"name": "Yaroslav Surilov"
},
"scripts": {},
"scripts": {
"compile": "tsc"
},
"type": "module",
"repository": {
"type": "git",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
23 changes: 23 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"compilerOptions": {
"rootDir": ".",
"outDir": "build",
"target": "es2017",
"module": "nodenext",
"moduleResolution": "nodenext",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
"include": [
"fifo-cache/src/*",
"lfu-cache/src/*",
"lru-cache/src/*",
"rr-cache/src/*",
"slru-cache/src/*",
"ttl-cache-v1/src/*",
"ttl-cache-v2/src/*",
"spec.ts"
]
}
Empty file added ttl-cache-v1/readme.md
Empty file.
File renamed without changes.
File renamed without changes.
Empty file added ttl-cache-v2/readme.md
Empty file.
File renamed without changes.
File renamed without changes.

0 comments on commit f105c42

Please sign in to comment.