diff --git a/packages/nuxt/tsconfig.json b/packages/nuxt/tsconfig.json index 474e9546..22e7aed1 100644 --- a/packages/nuxt/tsconfig.json +++ b/packages/nuxt/tsconfig.json @@ -1,3 +1,12 @@ { - "extends": "./playground/.nuxt/tsconfig.json" + "compilerOptions": { + "target": "esnext", + "module": "esnext", + "moduleResolution": "bundler", + "strict": true, + "skipLibCheck": true, + "esModuleInterop": true, + "noEmit": true + }, + "include": ["src"] }