mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-14 09:14:52 +01:00
20 lines
507 B
JSON
20 lines
507 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"lib": ["dom", "es2017"],
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "Node",
|
|
"jsx": "react",
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"noEmit": true,
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": ["node_modules", "public", ".cache", "*.js"],
|
|
"include": ["./src/**/*", "./api/**/*", "./tests/**/*"]
|
|
}
|