From a87e8bc803a040868841c9792f85c3b529e76d39 Mon Sep 17 00:00:00 2001 From: Ninosaurier Date: Fri, 10 Jul 2026 15:03:42 +0200 Subject: [PATCH] Added tsconfig.base.yaml and set rules --- tsconfig.base.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tsconfig.base.yaml diff --git a/tsconfig.base.yaml b/tsconfig.base.yaml new file mode 100644 index 0000000..33d81d1 --- /dev/null +++ b/tsconfig.base.yaml @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "ESNext", + "moduleResolution": "Bundler", + "strict": true, + "noImplicitOverride": true, + "noUncheckedIndexedAccess": true, + "exactOptionalPropertyTypes": true, + "declaration": true, + "sourceMap": true, + "isolatedModules": true, + "skipLibCheck": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true + } +} \ No newline at end of file