refactor: move es-mapping-generator to monorepo

This commit is contained in:
Rainer Killinger
2023-01-12 14:16:03 +01:00
committed by Thea Schöbl
parent f0a1f665ff
commit ceed1ed706
62 changed files with 4 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{
"compilerOptions": {
"alwaysStrict": true,
"charset": "utf8",
"declaration": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"inlineSourceMap": true,
"module": "CommonJS",
"moduleResolution": "node",
"noErrorTruncation": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "./lib/",
"strict": true,
"target": "es6"
},
"exclude": [
"./lib/",
"./test/"
]
}