mirror of
https://github.com/oceanprotocol/market.git
synced 2024-10-31 23:35:17 +01:00
34 lines
950 B
JSON
34 lines
950 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "ES2020",
|
|
"lib": ["dom", "ES2020"],
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node",
|
|
"jsx": "preserve",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"noEmit": true,
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"paths": {
|
|
"@shared/*": ["./src/components/@shared/*"],
|
|
"@hooks/*": ["./src/@hooks/*"],
|
|
"@context/*": ["./src/@context/*"],
|
|
"@images/*": ["./src/@images/*"],
|
|
"@utils/*": ["./src/@utils/*"],
|
|
"@content/*": ["./@content/*"]
|
|
},
|
|
"baseUrl": ".",
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"incremental": true
|
|
},
|
|
"exclude": ["node_modules", ".next", "*.js"],
|
|
"include": ["./src/**/*", "./tests/**/*", "./next-env.d.ts", "./content/**/*"]
|
|
}
|