chore: extends base tsconfig (#9912)

This commit is contained in:
neverland 2021-11-23 10:14:54 +08:00 committed by GitHub
parent e12be89d7c
commit 2e7fafeba0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 27 additions and 44 deletions

View File

@ -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/**/*"]
}

View File

@ -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/**/*"]
}

View File

@ -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/**/*"]
}

View File

@ -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/**/*"]
}

View File

@ -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/**/*"]
}

View File

@ -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/**/*"]
}

View File

@ -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/**/*"]
}

13
tsconfig.json Normal file
View File

@ -0,0 +1,13 @@
{
"compilerOptions": {
"baseUrl": ".",
"jsx": "preserve",
"strict": true,
"target": "ES2015",
"module": "ESNext",
"skipLibCheck": true,
"esModuleInterop": true,
"moduleResolution": "Node",
"lib": ["esnext", "dom"]
}
}