Skip to content

Commit

Permalink
chore: revert cdk tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
thijsdaniels committed Jun 13, 2024
1 parent 6a38196 commit 39b74c9
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions apps/infrastructure/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
{
"extends": "@codedazur/tsconfig/cdk.json",
"$schema": "https://json.schemastore.org/tsconfig",
"display": "CDK",
"include": ["**/*.ts"],
"exclude": ["cdk.out", "node_modules"]
"exclude": ["cdk.out", "node_modules"],
"compilerOptions": {
"composite": false,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"inlineSourceMap": true,
"inlineSources": true,
"isolatedModules": true,
"lib": ["es2018", "dom"],
"module": "commonjs",
"moduleResolution": "node",
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveWatchOutput": true,
"skipLibCheck": true,
"strict": true,
"target": "es2018"
}
}

0 comments on commit 39b74c9

Please sign in to comment.