diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2025-10-02 16:59:29 +0200 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2025-10-02 16:59:29 +0200 |
| commit | 5bfd611e7b3468ae38263388e2415d4bba94b0fc (patch) | |
| tree | 4aede9ce1ced890467211bb8c06f89afd0dbf36f /tsconfig.json | |
| parent | 06c8b78fd08de1259b4c6c9046532c296db83e4d (diff) | |
feat(frontend): setup and rewrite style with scss
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..bfa0fea --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,29 @@ +{ + "compilerOptions": { + // Environment setup & latest features + "lib": ["ESNext"], + "target": "ESNext", + "module": "Preserve", + "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, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + + // Some stricter flags (disabled by default) + "noUnusedLocals": false, + "noUnusedParameters": false, + "noPropertyAccessFromIndexSignature": false + } +} |
