diff options
Diffstat (limited to 'tsconfig.base.json')
| -rw-r--r-- | tsconfig.base.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tsconfig.base.json b/tsconfig.base.json new file mode 100644 index 0000000..a0b8514 --- /dev/null +++ b/tsconfig.base.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "strict": true, + "target": "ESNext", + "module": "ESNext", + "moduleResolution": "bundler", + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "isolatedModules": true, + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "noUncheckedIndexedAccess": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "verbatimModuleSyntax": true + } +} |
