Add a tsconfig based on @tsconfig/recommended

This commit is contained in:
Eryn Wells 2023-12-16 09:25:00 -08:00
parent d540126bfa
commit b9265b5793
3 changed files with 34 additions and 0 deletions

11
tsconfig.json Normal file
View file

@ -0,0 +1,11 @@
{
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"alwaysStrict": true,
"allowImportingTsExtensions": true,
"target": "esnext"
},
"include": [
"assets/scripts/**/*"
]
}