mirror of
https://github.com/oceanprotocol/status-frontend.git
synced 2024-11-22 01:46:56 +01:00
54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
// {
|
|
// "compilerOptions": {
|
|
// "target": "es5",
|
|
// "lib": ["dom", "dom.iterable", "esnext"],
|
|
// "allowJs": true,
|
|
// "skipLibCheck": true,
|
|
// "strict": true,
|
|
// "forceConsistentCasingInFileNames": true,
|
|
// "noEmit": true,
|
|
// "esModuleInterop": true,
|
|
// "module": "esnext",
|
|
// "moduleResolution": "node",
|
|
// "resolveJsonModule": true,
|
|
// "isolatedModules": true,
|
|
// "jsx": "preserve",
|
|
// "incremental": true
|
|
// },
|
|
// "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
// "exclude": ["node_modules"]
|
|
// }
|
|
{
|
|
"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/**/*"]
|
|
}
|