mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
5b4a640476
* prepare for provider multi chain * use oceanjs pre-release version 2.7.0-next.0 * use oceanjs pre-release version 2.7.0-next.1 * fix isValid provider and isCompatible checks and use oceanjs pre-release version 2.7.0-next.2 * fix build * fix compute to data environments setting * fix build * bump oceanjs lib to 2.7.0
31 lines
906 B
JSON
31 lines
906 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".", // This must be specified if "paths" is.
|
|
"target": "es2015",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"paths": {
|
|
"@components/*": ["./src/components/*"],
|
|
"@shared/*": ["./src/components/@shared/*"],
|
|
"@hooks/*": ["./src/@hooks/*"],
|
|
"@context/*": ["./src/@context/*"],
|
|
"@images/*": ["./src/@images/*"],
|
|
"@utils/*": ["./src/@utils/*"],
|
|
"@content/*": ["./@content/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules", ".next", "*.js"]
|
|
}
|