Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
22 lines
538 B
Plaintext
22 lines
538 B
Plaintext
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"types": ["node", "jest"],
|
|
"target": "es5",
|
|
"lib": ["es2015", "dom"],
|
|
"sourceMap": true,
|
|
"outDir": "dist/lib",
|
|
"declaration": true,
|
|
"declarationDir": "dist/types",
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|