chore: projen eject

This commit is contained in:
Tom Keller
2022-10-27 16:54:59 -07:00
parent 19a173d3ee
commit 4d17522ddb
21 changed files with 4744 additions and 4089 deletions
+26 -29
View File
@@ -1,38 +1,35 @@
{
"compilerOptions": {
"rootDir": "src",
"outDir": "build",
"alwaysStrict": true,
"declaration": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"inlineSourceMap": true,
"inlineSources": true,
"lib": [
"es2019"
],
"module": "commonjs",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"stripInternal": true,
"target": "es2022",
"forceConsistentCasingInFileNames": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"pretty": true
"strict": true,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"module": "CommonJS",
"resolveJsonModule": true,
"rootDir": ".",
"outDir": "build",
"composite": true,
"newLine": "lf",
"noEmitOnError": true,
"sourceMap": true,
"disableSizeLimit": true,
"forceConsistentCasingInFileNames": true,
"lib": [ "ES2020" ],
"target": "ES2020",
"noErrorTruncation": true,
"esModuleInterop": true
},
"include": [
"src/**/*.ts"
"src/**/*.ts",
"test/**/*.ts"
],
"exclude": [],
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
}