-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fc097fe
commit ed15be8
Showing
1 changed file
with
19 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,31 @@ | ||
{ | ||
"compilerOptions": { | ||
/* bypass check node_modules */ | ||
"allowJs": true, | ||
// `baseUrl` must be placed on the extending configuration in devland, or paths won't be recognized | ||
"esModuleInterop": true, | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
// Needed to address https://github.com/quasarframework/app-extension-typescript/issues/36 | ||
"noEmit": true, | ||
"resolveJsonModule": true, | ||
// Avoid cross-os errors due to inconsistent file casing | ||
"forceConsistentCasingInFileNames": true, | ||
"sourceMap": true, | ||
"strict": true, | ||
"target": "esnext", | ||
"isolatedModules": true, | ||
"useDefineForClassFields": true, | ||
// Fix Volar issue https://github.com/johnsoncodehk/volar/issues/1153 | ||
"jsx": "preserve", | ||
"lib": ["esnext", "dom"], | ||
"skipLibCheck": true, | ||
"skipDefaultLibCheck": true, | ||
"preserveSymlinks": true, | ||
"noEmitOnError": false, | ||
"baseUrl": "./", | ||
"lib": ["ESNext"], | ||
/* Bundler mode */ | ||
// "allowImportingTsExtensions": true, | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"declaration": true, | ||
"declarationDir": "./dist/", | ||
// "noEmit": true, | ||
/* Linting */ | ||
"strict": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"esModuleInterop": true, | ||
"noFallthroughCasesInSwitch": true, | ||
"types": ["vitest/globals", "vite/client"] | ||
"types": ["vitest/globals", "vite/client", "@types/node"] | ||
} | ||
} |