all repos — website @ a25028aa30bf0f3b89a9a7c99192e1a14267fc97

My website

Initial commit

Alan Pearce
commit

a25028aa30bf0f3b89a9a7c99192e1a14267fc97

1 file changed, 22 insertions(+), 0 deletions(-)

changed files
A tsconfig.json
@@ -0,0 +1,22 @@
+{ + "compilerOptions": { + "lib": ["ES2017", "ES2019", "ESNext"], + "module": "esnext", + "target": "esnext", + "moduleResolution": "bundler", + "moduleDetection": "force", + "allowImportingTsExtensions": true, + "noEmit": true, + "composite": true, + "strict": true, + "downlevelIteration": true, + "skipLibCheck": true, + "jsx": "preserve", + "allowSyntheticDefaultImports": true, + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "types": [ + "bun-types" // add Bun global + ] + } +}