fcc5d99d40
* add vitest * initialize lib w/ tests * move to dev dep * run tests in CI * update file names * move api folder to lib * move api and api types to same folder * update generator outpath * rm husky * i guess i _did_ need those types * reorg types * extract validators into testable components * (WIP) start composable testing * fix import type * fix linter complaint * simplify icon type def * fix linter errors (maybe?) * rename client file for sorting
36 lines
818 B
JSON
36 lines
818 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"target": "ES2018",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"experimentalDecorators": true,
|
|
"strictPropertyInitialization": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./*"],
|
|
"@/*": ["./*"]
|
|
},
|
|
"types": [
|
|
"@nuxt/types",
|
|
"@nuxtjs/axios",
|
|
"@types/node",
|
|
"@nuxtjs/i18n",
|
|
"@nuxtjs/auth-next",
|
|
"@nuxtjs/vuetify",
|
|
"@types/sortablejs"
|
|
]
|
|
},
|
|
"vueCompilerOptions": {
|
|
"target": 2,
|
|
"experimentalCompatMode": 2
|
|
},
|
|
"include": ["**/*", ".eslintrc.js"],
|
|
"exclude": ["node_modules", ".nuxt", "dist"]
|
|
}
|