diff options
| author | Andrew Lee <andrew@alee14.me> | 2024-12-24 13:56:06 -0500 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2024-12-24 13:56:06 -0500 |
| commit | 4811a3eabc1e7afaf17b45f9dea541d987c45717 (patch) | |
| tree | 7368782062805aa60dcbeeb3377c35076658decc /tsconfig.json | |
| download | freeso-discord-auth-4811a3eabc1e7afaf17b45f9dea541d987c45717.tar.gz freeso-discord-auth-4811a3eabc1e7afaf17b45f9dea541d987c45717.tar.bz2 freeso-discord-auth-4811a3eabc1e7afaf17b45f9dea541d987c45717.zip | |
Initial commit
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..238655f --- /dev/null +++ b/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 + } +} |
