mtcute/tsconfig.json
2021-04-08 12:19:38 +03:00

21 lines
478 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es2018",
"allowJs": true,
"sourceMap": true,
"inlineSources": true,
"outDir": "dist",
"baseUrl": ".",
"declaration": true,
"esModuleInterop": true,
"strictNullChecks": true,
"noImplicitAny": true,
"incremental": true,
"stripInternal": true
},
"exclude": [
"private",
"node_modules"
]
}