mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
fix(ts): keep baseUrl property in generated tsconfig.json (#4843)
This commit is contained in:
parent
5f94120f95
commit
55dc7f4475
@ -1,6 +1,7 @@
|
||||
{
|
||||
"extends": "@nuxt/typescript-edge",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"noImplicitAny": false,
|
||||
"types": [
|
||||
"@types/node",
|
||||
|
@ -1,6 +1,7 @@
|
||||
{
|
||||
"extends": "@nuxt/typescript-edge",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"types": [
|
||||
"@types/node",
|
||||
"@nuxt/vue-app-edge"
|
||||
|
@ -22,6 +22,7 @@ export async function generateTsConfigIfMissing(rootDir) {
|
||||
await writeJSON(tsConfigPath, {
|
||||
extends: configToExtend,
|
||||
compilerOptions: {
|
||||
baseUrl: '.',
|
||||
types: [
|
||||
'@types/node',
|
||||
'@nuxt/vue-app'
|
||||
|
7
test/fixtures/typescript/tsconfig.json
vendored
7
test/fixtures/typescript/tsconfig.json
vendored
@ -1,6 +1,11 @@
|
||||
{
|
||||
"extends": "@nuxt/typescript",
|
||||
"compilerOptions": {
|
||||
"noImplicitAny": false
|
||||
"baseUrl": ".",
|
||||
"noImplicitAny": false,
|
||||
"types": [
|
||||
"@types/node",
|
||||
"@nuxt/vue-app"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ describe('typescript setup', () => {
|
||||
expect(await readJSON(tsConfigPath)).toEqual({
|
||||
extends: '@nuxt/typescript',
|
||||
compilerOptions: {
|
||||
baseUrl: '.',
|
||||
types: [
|
||||
'@types/node',
|
||||
'@nuxt/vue-app'
|
||||
|
Loading…
Reference in New Issue
Block a user