mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-31 04:12:10 +03:00
24 lines
544 B
JSON
24 lines
544 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"strict": false,
|
|
"jsx": "react-jsx",
|
|
"lib": ["dom", "esnext"],
|
|
"baseUrl": "..",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@omniroute/open-sse": ["./open-sse"],
|
|
"@omniroute/open-sse/*": ["./open-sse/*"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/*.js"]
|
|
}
|