28 lines
729 B
JSON
28 lines
729 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./tmp",
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "es2017",
|
|
"lib": ["DOM", "ESNext"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"incremental": false,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": false,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"types": ["vite/client"],
|
|
"paths": {
|
|
"~/*": ["src/*"]
|
|
},
|
|
"plugins": [
|
|
// Transform paths in output .d.ts files (Include this line if you output declarations files)
|
|
{ "transform": "typescript-transform-paths", "afterDeclarations": true }
|
|
]
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|