mirror of
https://github.com/directus/directus.git
synced 2026-01-23 08:08:04 -05:00
* Move devDeps to API * Move app to npm workspaces * Tweaks / add lockfiles * Add locks, fix devdeps across packages * Move eslint config rootlevel * Use eslint fix for vue files instead of vue-cli-service * Add global prettier format option * Create lockfiles for all packages * Replace husky with simple-git-hooks
24 lines
524 B
JSON
24 lines
524 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"types": ["webpack-env"],
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.vue"],
|
|
"exclude": ["node_modules"]
|
|
}
|