23 lines
491 B
JSON
23 lines
491 B
JSON
{
|
|
"extends": "./.nuxt/tsconfig.json",
|
|
"compilerOptions": {
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": false,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": [
|
|
".nuxt/nuxt.d.ts",
|
|
".nuxt/auto-imports.d.ts",
|
|
"types/**/*",
|
|
"i18n/**/*",
|
|
"layers/**/*",
|
|
"app/**/*",
|
|
"temp/inspection.ts",
|
|
"temp/middleware.ts"
|
|
],
|
|
"exclude": [".nuxt/types/**/*", "node_modules"]
|
|
}
|