I've replaced `lodash` with `lodash-es`, so it can be tree-shaken `~/modules` is a directory with application modules that run before app is mounted. Useful for configuration, web socket connection, and other stuff `~/composables` is a directory with our custom composables. Much like `~/utils` but each util is in its own file
34 lines
774 B
JSON
34 lines
774 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"lib": ["DOM", "ESNext"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
],
|
|
"types": [
|
|
"vite/client",
|
|
"vue/ref-macros",
|
|
"unplugin-vue2-script-setup/types",
|
|
"vue-gettext/types"
|
|
],
|
|
"paths": {
|
|
"~/*": ["src/*"],
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"vueCompilerOptions": {
|
|
"experimentalCompatMode": 2
|
|
},
|
|
"include": ["src/*.d.ts", "src/**/*.ts", "src/**/*.vue"]
|
|
}
|