mirror of
https://github.com/seigler/aoc2022
synced 2025-07-26 22:46:09 +00:00
I should probably check this in at some point huh
This commit is contained in:
commit
23e19496a1
20 changed files with 3507 additions and 0 deletions
23
tsconfig.json
Normal file
23
tsconfig.json
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"target": "es2020",
|
||||
"module": "es2020",
|
||||
"removeComments": true,
|
||||
"declaration": true,
|
||||
"outDir": "./dist",
|
||||
"preserveConstEnums": true,
|
||||
"strict": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"moduleResolution": "node",
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"importHelpers": true
|
||||
},
|
||||
"include": [
|
||||
"src"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"src/**/*.test.ts",
|
||||
"src/**/*.temp.ts"
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue