mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2026-04-15 21:16:59 -04:00
23 lines
452 B
JSON
23 lines
452 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "nodenext",
|
|
"resolveJsonModule": true,
|
|
"checkJs": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"baseUrl": "./js",
|
|
"paths": {
|
|
"/*": ["./*"],
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/node_modules/*"
|
|
]
|
|
}
|