UNPKG

typesafeconfig

Version:

TypeScript base configuration (tsconfig) to extend from with emphasis on type safety.

20 lines (17 loc) 453 B
{ "extends": "./tsconfig.strict.json", "compilerOptions": { /* Basic Options */ "isolatedModules": true, "module": "esnext", "target": "esnext", /* Module Resolution Options */ // "allowSyntheticDefaultImports": true, "esModuleInterop": true, "moduleResolution": "node", /* Advanced Options */ "forceConsistentCasingInFileNames": true, "importsNotUsedAsValues": "error", "skipLibCheck": false } }