Created
May 14, 2025 11:15
-
-
Save crashmax-dev/dd773c1cdd779b77c1601aa9c0542533 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
{ | |
"extends": "@vue/tsconfig/tsconfig.dom.json", | |
"compilerOptions": { | |
"composite": true, | |
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", | |
"lib": [ | |
"ES2022", | |
"DOM", | |
"DOM.Iterable" | |
], | |
"baseUrl": ".", | |
"paths": { | |
"@/*": ["./src/*"] | |
}, | |
"strictPropertyInitialization": false | |
}, | |
"include": [ | |
"src/**/*", | |
"src/**/*.vue" | |
], | |
"exclude": [ | |
"src/**/__tests__/*" | |
] | |
} |
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
Show hidden characters
{ | |
"references": [ | |
{ | |
"path": "./tsconfig.app.json" | |
}, | |
{ | |
"path": "./tsconfig.node.json" | |
} | |
], | |
"files": [] | |
} |
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
{ | |
"extends": "@tsconfig/node20/tsconfig.json", | |
"compilerOptions": { | |
"composite": true, | |
"tsBuildInfoFile": "node_modules/.tmp/tsconfig.node.tsbuildinfo", | |
"module": "ESNext", | |
"moduleResolution": "Bundler", | |
"types": ["node"], | |
"noEmit": true | |
}, | |
"include": [ | |
"vite.config.*" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment