mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-13 16:54:53 +01:00
21 lines
533 B
JSON
21 lines
533 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,
|
|
"allowJs": true
|
|
},
|
|
"exclude": ["node_modules", "public", ".cache", "*.js"],
|
|
"include": ["./src/**/*", "./tests/**/*", "./app.config.js"]
|
|
}
|