mtcute/tsconfig.json

21 lines
450 B
JSON
Raw Normal View History

2021-04-08 12:19:38 +03:00
{
"compilerOptions": {
"module": "commonjs",
"target": "es2020",
2021-04-08 12:19:38 +03:00
"allowJs": true,
"sourceMap": true,
"inlineSources": true,
"declaration": true,
"esModuleInterop": true,
"strict": true,
2021-04-08 12:19:38 +03:00
"noImplicitAny": true,
"noImplicitThis": true,
2021-04-08 12:19:38 +03:00
"incremental": true,
"stripInternal": true
},
"exclude": [
"private",
"node_modules"
]
}