X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tsconfig.json;h=fc7955a36c773740f2f5213caa2acf3280a0587a;hb=HEAD;hp=9d2cfe738f161081f45b359988713838a16e23ad;hpb=0f4540150dd0b9c8bf96b92182413237e9ac0491;p=e-mobility-charging-stations-simulator.git diff --git a/tsconfig.json b/tsconfig.json index 9d2cfe73..fc7955a3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,18 @@ { - "extends": "./tsconfig-base.json", + "$schema": "https://json.schemastore.org/tsconfig", "compilerOptions": { - "verbatimModuleSyntax": true - } + "target": "ESNext", + "module": "NodeNext", + "lib": ["ESNext"], + "removeComments": true, + "strict": true, + "moduleResolution": "NodeNext", + "resolveJsonModule": true, + "allowSyntheticDefaultImports": true, + "verbatimModuleSyntax": true, + "experimentalDecorators": true, + "emitDecoratorMetadata": true, + "forceConsistentCasingInFileNames": true + }, + "exclude": ["ui/web/**/*.ts"] }