From 2e7fafeba0179e4e0d80dcb5666a3e0a073b562d Mon Sep 17 00:00:00 2001 From: neverland Date: Tue, 23 Nov 2021 10:14:54 +0800 Subject: [PATCH] chore: extends base tsconfig (#9912) --- packages/create-vant-cli-app/tsconfig.json | 7 ++----- packages/vant-area-data/tsconfig.json | 8 ++------ packages/vant-cli/tsconfig.json | 9 ++------- packages/vant-markdown-vetur/tsconfig.json | 7 ++----- packages/vant-popperjs/tsconfig.json | 8 ++------ packages/vant-use/tsconfig.json | 8 ++------ packages/vant/tsconfig.json | 11 ++--------- tsconfig.json | 13 +++++++++++++ 8 files changed, 27 insertions(+), 44 deletions(-) create mode 100644 tsconfig.json diff --git a/packages/create-vant-cli-app/tsconfig.json b/packages/create-vant-cli-app/tsconfig.json index d40c806f7..738ecb181 100644 --- a/packages/create-vant-cli-app/tsconfig.json +++ b/packages/create-vant-cli-app/tsconfig.json @@ -1,13 +1,10 @@ { + "extends": "../../tsconfig", "compilerOptions": { "target": "ES2019", "outDir": "./lib", "module": "commonjs", - "strict": true, - "declaration": true, - "skipLibCheck": true, - "esModuleInterop": true, - "lib": ["esnext"] + "declaration": true }, "include": ["src/**/*"] } diff --git a/packages/vant-area-data/tsconfig.json b/packages/vant-area-data/tsconfig.json index 69369e785..12b1beb8b 100644 --- a/packages/vant-area-data/tsconfig.json +++ b/packages/vant-area-data/tsconfig.json @@ -1,13 +1,9 @@ { + "extends": "../../tsconfig", "compilerOptions": { "target": "ES2019", "outDir": "./lib", - "module": "ES2015", - "strict": true, - "declaration": true, - "skipLibCheck": true, - "esModuleInterop": true, - "lib": ["esnext"] + "declaration": true }, "include": ["src/**/*"] } diff --git a/packages/vant-cli/tsconfig.json b/packages/vant-cli/tsconfig.json index 3bfcc20c0..12b1beb8b 100644 --- a/packages/vant-cli/tsconfig.json +++ b/packages/vant-cli/tsconfig.json @@ -1,14 +1,9 @@ { + "extends": "../../tsconfig", "compilerOptions": { "target": "ES2019", "outDir": "./lib", - "module": "ESNext", - "strict": true, - "declaration": true, - "skipLibCheck": true, - "esModuleInterop": true, - "moduleResolution":"Node", - "lib": ["esnext", "dom"] + "declaration": true }, "include": ["src/**/*"] } diff --git a/packages/vant-markdown-vetur/tsconfig.json b/packages/vant-markdown-vetur/tsconfig.json index d40c806f7..738ecb181 100644 --- a/packages/vant-markdown-vetur/tsconfig.json +++ b/packages/vant-markdown-vetur/tsconfig.json @@ -1,13 +1,10 @@ { + "extends": "../../tsconfig", "compilerOptions": { "target": "ES2019", "outDir": "./lib", "module": "commonjs", - "strict": true, - "declaration": true, - "skipLibCheck": true, - "esModuleInterop": true, - "lib": ["esnext"] + "declaration": true }, "include": ["src/**/*"] } diff --git a/packages/vant-popperjs/tsconfig.json b/packages/vant-popperjs/tsconfig.json index ac6b07b09..04da53d75 100644 --- a/packages/vant-popperjs/tsconfig.json +++ b/packages/vant-popperjs/tsconfig.json @@ -1,12 +1,8 @@ { + "extends": "../../tsconfig", "compilerOptions": { - "target": "ES2015", "outDir": "./dist", - "module": "ESNext", - "strict": true, - "declaration": true, - "skipLibCheck": true, - "moduleResolution": "Node", + "declaration": true }, "include": ["src/**/*"] } diff --git a/packages/vant-use/tsconfig.json b/packages/vant-use/tsconfig.json index ac6b07b09..04da53d75 100644 --- a/packages/vant-use/tsconfig.json +++ b/packages/vant-use/tsconfig.json @@ -1,12 +1,8 @@ { + "extends": "../../tsconfig", "compilerOptions": { - "target": "ES2015", "outDir": "./dist", - "module": "ESNext", - "strict": true, - "declaration": true, - "skipLibCheck": true, - "moduleResolution": "Node", + "declaration": true }, "include": ["src/**/*"] } diff --git a/packages/vant/tsconfig.json b/packages/vant/tsconfig.json index b21270cc4..11326058e 100644 --- a/packages/vant/tsconfig.json +++ b/packages/vant/tsconfig.json @@ -1,15 +1,8 @@ { + "extends": "../../tsconfig", "compilerOptions": { - "baseUrl": ".", - "jsx": "preserve", - "target": "ES2015", - "module": "ES2015", - "strict": true, "allowJs": true, - "skipLibCheck": true, - "noImplicitThis": true, - "esModuleInterop": true, - "moduleResolution": "node" + "noImplicitThis": true }, "include": ["src/**/*", "docs/**/*", "test/**/*"] } diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 000000000..923de7527 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,13 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "jsx": "preserve", + "strict": true, + "target": "ES2015", + "module": "ESNext", + "skipLibCheck": true, + "esModuleInterop": true, + "moduleResolution": "Node", + "lib": ["esnext", "dom"] + } +}