Skip to content

Commit

Permalink
making tsconfig for directus extension match the rest of the repository.
Browse files Browse the repository at this point in the history
Signed-off-by: thanaParis <thana.paris@s44.team>
  • Loading branch information
thanaParis committed Apr 2, 2024
1 parent 2d7c15d commit 05daa49
Showing 1 changed file with 18 additions and 25 deletions.
43 changes: 18 additions & 25 deletions directus-extension-charging-stations-bundle/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,21 @@
{
"compilerOptions": {
"target": "ES2019",
"lib": ["ES2019", "DOM"],
"moduleResolution": "node",
"strict": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUncheckedIndexedAccess": true,
"noUnusedParameters": true,
"alwaysStrict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"resolveJsonModule": false,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"rootDir": "./src"
"target": "es6",
"module": "commonjs",
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": true,
"outDir": "lib",
"strict": true,
"resolveJsonModule": true,
"esModuleInterop": true
},
"include": ["./src/**/*.ts"]
}
"include": [
"src"
],
"exclude": [
"node_modules",
"**/__tests__/*"
]
}

0 comments on commit 05daa49

Please sign in to comment.