summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorLizzy Hunt <lizzy.hunt@usu.edu>2023-12-01 16:05:44 -0700
committerLizzy Hunt <lizzy.hunt@usu.edu>2023-12-01 16:05:44 -0700
commit888cd821acc7582255320e0ddbddd2495e505cd4 (patch)
tree430ee27e7ee7476be5db930c0a93f61c60934c46 /tsconfig.json
parentcdb12dbc28cc441745bad55e384494bc8942586a (diff)
downloadaoc-888cd821acc7582255320e0ddbddd2495e505cd4.tar.gz
aoc-888cd821acc7582255320e0ddbddd2495e505cd4.zip
updates and test w/ day 01 2021
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json22
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
+ ]
+ }
+}