3e4e57fa0b
- Update import to use .tsx source instead of outdated .js - Change header assertions from X-Impersonation-Session-Id to Authorization Bearer - Change confirmed badge text from "✓ Confirmed" to "Confirmed" - Add allowImportingTsExtensions to tsconfig (required for .tsx imports with bundler moduleResolution) Co-Authored-By: Paperclip <noreply@paperclip.ing>
15 lines
329 B
JSON
15 lines
329 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"skipLibCheck": true,
|
|
"allowImportingTsExtensions": true
|
|
},
|
|
"include": ["src"]
|
|
}
|