1
Fork 0
mirror of https://github.com/RGBCube/alejandra synced 2025-08-01 04:57:44 +00:00

feat: finish extension

This commit is contained in:
Kevin Amado 2022-02-12 19:10:01 -05:00
parent 63b45b881e
commit 6bee230d57
No known key found for this signature in database
GPG key ID: FFF341057F503148
4 changed files with 142 additions and 47 deletions

View file

@ -1,9 +1,13 @@
{
"compilerOptions": {
"checkJs": false,
"lib": ["ES2020"],
"module": "commonjs",
"checkJs": true,
"lib": [
"ES2020"
],
"module": "CommonJS",
"target": "ES2020"
},
"exclude": ["node_modules"]
"exclude": [
"node_modules"
]
}