From f1c0d57b427846a7aa9807b5b7bb4289212eed72 Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Fri, 31 Jan 2025 15:34:40 +0100 Subject: Ajout du premier semestre --- semestre 1/anglais/presentation/tsconfig.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 semestre 1/anglais/presentation/tsconfig.json (limited to 'semestre 1/anglais/presentation/tsconfig.json') diff --git a/semestre 1/anglais/presentation/tsconfig.json b/semestre 1/anglais/presentation/tsconfig.json new file mode 100644 index 0000000..238655f --- /dev/null +++ b/semestre 1/anglais/presentation/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compilerOptions": { + // Enable latest features + "lib": ["ESNext", "DOM"], + "target": "ESNext", + "module": "ESNext", + "moduleDetection": "force", + "jsx": "react-jsx", + "allowJs": true, + + // Bundler mode + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "noEmit": true, + + // Best practices + "strict": true, + "skipLibCheck": true, + "noFallthroughCasesInSwitch": true, + + // Some stricter flags (disabled by default) + "noUnusedLocals": false, + "noUnusedParameters": false, + "noPropertyAccessFromIndexSignature": false + } +} -- cgit v1.2.3