Created
April 25, 2022 17:11
-
-
Save wight554/aec5a658fc06ededa8150c9f0ee0a1af to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"compilerOptions": { | |
"baseUrl": ".", | |
"outDir": "dist", | |
"target": "ESNext", | |
"useDefineForClassFields": true, | |
"lib": ["DOM", "DOM.Iterable", "ESNext"], | |
"allowJs": true, | |
"skipLibCheck": false, | |
"module": "NodeNext", | |
"moduleResolution": "NodeNext", | |
"esModuleInterop": true, | |
"allowSyntheticDefaultImports": true, | |
"strict": true, | |
"forceConsistentCasingInFileNames": true, | |
"isolatedModules": true, | |
"noEmit": true, | |
"types": ["node", "vitest/globals"], | |
"paths": { | |
"@src/*": ["./src/*"], | |
"@server/*": ["./server/*"], | |
"@test/*": ["./test/*"] | |
} | |
}, | |
"include": ["src", "server", "test"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment