mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-02 08:06:00 +00:00
19 lines
441 B
JSON
19 lines
441 B
JSON
{
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"skipLibCheck": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"jsx": "react-jsx"
|
|
}
|
|
}
|