21 lines
483 B
JSON
21 lines
483 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"]
|
|
}
|