diff --git a/packages/luna-charts/tsconfig.json b/packages/luna-charts/tsconfig.json index cf248d6..7d136f0 100644 --- a/packages/luna-charts/tsconfig.json +++ b/packages/luna-charts/tsconfig.json @@ -1,4 +1,5 @@ { + "extends": "../../tsconfig.base.json", "compilerOptions": { "allowSyntheticDefaultImports": true, "allowUnreachableCode": false, diff --git a/tsconfig.base.json b/tsconfig.base.json new file mode 100644 index 0000000..33d81d1 --- /dev/null +++ b/tsconfig.base.json @@ -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