1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-29 00:57:50 +02:00
market/tsconfig.json

22 lines
558 B
JSON
Raw Normal View History

2020-05-07 08:03:30 +02:00
{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"lib": ["dom", "es2017"],
2020-05-07 08:03:30 +02:00
"resolveJsonModule": true,
2020-06-30 13:32:16 +02:00
"moduleResolution": "Node",
"jsx": "react",
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noEmit": true,
"sourceMap": true,
"noImplicitAny": true,
2020-07-08 15:15:02 +02:00
"skipLibCheck": true,
2020-10-30 16:31:22 +01:00
"allowJs": true
//"baseUrl": "./src"
2020-05-07 08:03:30 +02:00
},
"exclude": ["node_modules", "public", ".cache", "*.js"],
"include": ["./src/**/*", "./tests/**/*", "./app.config.js"]
2020-05-07 08:03:30 +02:00
}