fluence-js/tsconfig.json

17 lines
427 B
JSON
Raw Normal View History

2020-05-14 15:20:39 +03:00
{
"compilerOptions": {
"downlevelIteration": true,
"sourceMap": true,
"inlineSources": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"declaration": true,
"esModuleInterop": true,
"declarationMap": true,
"strict": true,
"skipLibCheck": true
},
2022-05-31 19:05:52 +03:00
"exclude": ["node_modules", "dist"],
"include": ["src/**/*"]
}