3
0
Fork 0
mirror of https://github.com/Swatinem/rust-cache synced 2026-02-26 13:05:41 +00:00

initial commit

This commit is contained in:
Arpad Borsos 2020-09-25 16:42:39 +02:00
commit 99970e092c
No known key found for this signature in database
GPG key ID: 908EDF65263368B4
12 changed files with 111031 additions and 0 deletions

21
tsconfig.json Normal file
View file

@ -0,0 +1,21 @@
{
"compilerOptions": {
"noEmitOnError": false,
"diagnostics": true,
"lib": ["esnext"],
"target": "es2017",
"resolveJsonModule": true,
"moduleResolution": "node",
"module": "esnext",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true
},
"exclude": ["dist"]
}