add thing

This commit is contained in:
Sakooooo 2024-08-05 16:33:19 +04:00
parent 2afa57f8c7
commit b5d3c82b7b
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 19 additions and 0 deletions

1
config/ags/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
types

18
config/ags/tsconfig.json Normal file
View file

@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"lib": [
"ES2022"
],
"allowJs": true,
"checkJs": true,
"strict": true,
"noImplicitAny": false,
"baseUrl": ".",
"typeRoots": [
"./types"
],
"skipLibCheck": true
}
}