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
20 lines
451 B
Plaintext
20 lines
451 B
Plaintext
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"esModuleInterop": true,
|
|
"jsx": "react",
|
|
"lib": ["DOM", "ESNext"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"noImplicitAny": true,
|
|
"outDir": "./dist",
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"target": "es5",
|
|
"types": ["jest", "node", "react"]
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["../src/*", "../__tests__/*"]
|
|
}
|