26 lines
608 B
JSON
26 lines
608 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"strict": false,
|
|
"jsx": "react-jsx",
|
|
"lib": ["dom", "esnext"],
|
|
"ignoreDeprecations": "5.0",
|
|
"baseUrl": "..",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@omniroute/open-sse": ["./open-sse"],
|
|
"@omniroute/open-sse/*": ["./open-sse/*"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/*.js"]
|
|
}
|