vite/playground/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
504 B
JSON
Raw Permalink Normal View History

{
"include": ["**/vite*config*", "**/*.ts"],
"exclude": ["**/dist/**"],
"compilerOptions": {
"checkJs": true,
"target": "ES2022",
2022-05-18 20:15:15 +00:00
"module": "ESNext",
2020-12-20 03:33:13 +00:00
"outDir": "dist",
"baseUrl": ".",
"allowJs": true,
"esModuleInterop": true,
2022-05-11 09:03:19 +00:00
"resolveJsonModule": true,
"moduleResolution": "Bundler",
"skipLibCheck": true,
"noUnusedLocals": true,
"jsx": "preserve",
"types": ["vite/client", "node"],
2022-05-11 09:03:19 +00:00
"paths": {
"~utils": ["./test-utils.ts"]
}
}
}