build: replace Yarn with npm (#1993)

This commit is contained in:
Eric Liu 2024-08-20 07:00:23 -07:00 committed by GitHub
commit 96cfb4be44
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 16641 additions and 9108 deletions

View file

@ -1 +1,15 @@
{ "extends": "@tsconfig/svelte" }
{
"compilerOptions": {
"noEmit": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"ignoreDeprecations": "5.0",
"importsNotUsedAsValues": "error",
"isolatedModules": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"strict": true,
},
"include": ["src", "tests"]
}