diff options
author | Lizzy Hunt <lizzy.hunt@usu.edu> | 2023-12-01 16:05:44 -0700 |
---|---|---|
committer | Lizzy Hunt <lizzy.hunt@usu.edu> | 2023-12-01 16:05:44 -0700 |
commit | 888cd821acc7582255320e0ddbddd2495e505cd4 (patch) | |
tree | 430ee27e7ee7476be5db930c0a93f61c60934c46 /tsconfig.json | |
parent | cdb12dbc28cc441745bad55e384494bc8942586a (diff) | |
download | aoc-888cd821acc7582255320e0ddbddd2495e505cd4.tar.gz aoc-888cd821acc7582255320e0ddbddd2495e505cd4.zip |
updates and test w/ day 01 2021
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..7556e1d --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,22 @@ +{ + "compilerOptions": { + "lib": ["ESNext"], + "module": "esnext", + "target": "esnext", + "moduleResolution": "bundler", + "moduleDetection": "force", + "allowImportingTsExtensions": true, + "noEmit": true, + "composite": true, + "strict": true, + "downlevelIteration": true, + "skipLibCheck": true, + "jsx": "react-jsx", + "allowSyntheticDefaultImports": true, + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "types": [ + "bun-types" // add Bun global + ] + } +} |