chore: simplify tsconfig.json (#1108)

This commit is contained in:
Himself65
2023-02-17 20:08:52 -06:00
committed by GitHub
parent 4647d44972
commit 5f0015f522
7 changed files with 35 additions and 139 deletions
+2 -31
View File
@@ -1,33 +1,4 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"moduleResolution": "Node" /* can't use NodeNext, otherwise can't find styled-components and @emotion/styled 's type, because ts won't follow `type` field in @emotion/styled 's packagejson, will follow `main` instead */,
"strict": true,
"strictNullChecks": true /* Enable strict null checks. */,
"strictFunctionTypes": true /* Enable strict checking of function types. */,
"strictPropertyInitialization": true /* Enable strict checking of property initialization in classes. */,
"noImplicitThis": true /* Raise error on 'this' expressions with an implied 'any' type. */,
"alwaysStrict": true /* Parse in strict mode and emit "use strict" for each source file. */,
"sourceMap": true,
"resolveJsonModule": true,
"jsx": "react-jsx" /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */,
"allowJs": false /* Allow javascript files to be compiled. */,
"esModuleInterop": true,
"types": ["vite/client"],
"typeRoots": ["types"],
"noEmit": true,
"experimentalDecorators": true,
"isolatedModules": true,
"skipLibCheck": true,
"noImplicitReturns": true,
"paths": {
"@/*": ["../web/src/*"],
"@affine/component": ["../../packages/component/src/index"],
"@affine/i18n": ["../../packages/i18n/src/index"]
}
},
"include": ["./src"],
"exclude": ["node_modules"]
"extends": "../../tsconfig.json",
"include": ["./src"]
}
+1 -5
View File
@@ -18,11 +18,7 @@
"experimentalDecorators": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@affine/component": ["../../packages/component"],
"@affine/i18n": ["../../packages/i18n"],
"@affine/datacenter": ["../../packages/data-center"],
"@toeverything/pathfinder-logger": ["../../packages/logger"]
"@/*": ["src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
+2 -24
View File
@@ -1,26 +1,4 @@
{
"compilerOptions": {
"target": "ES2020",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"experimentalDecorators": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@affine/i18n": ["../i18n/src/index"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
"extends": "../../tsconfig.json",
"include": ["./src"]
}
+2 -28
View File
@@ -1,30 +1,4 @@
{
"compilerOptions": {
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": false,
"esModuleInterop": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"experimentalDecorators": true,
"declaration": true,
"baseUrl": ".",
"rootDir": ".",
"outDir": "./dist"
},
"include": ["next-env.d.ts", "src/**/*.ts", "pages/**/*.tsx"],
"exclude": [
"node_modules",
"dist",
"src/provider/affine/sync.js",
"src/**/*.spec.ts"
]
"extends": "../../tsconfig.json",
"include": ["./src"]
}
+2 -23
View File
@@ -1,25 +1,4 @@
{
"compilerOptions": {
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": false,
"esModuleInterop": true,
"module": "ESNext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"experimentalDecorators": true,
"declaration": true,
"baseUrl": ".",
"rootDir": ".",
"outDir": "./dist"
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist"]
"extends": "../../tsconfig.json",
"include": ["./src"]
}
+2 -23
View File
@@ -1,25 +1,4 @@
{
"compilerOptions": {
"target": "ES2020",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": false,
"esModuleInterop": true,
"module": "CommonJS",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"experimentalDecorators": true,
"declaration": true,
"baseUrl": ".",
"rootDir": ".",
"outDir": "./dist"
},
"include": ["next-env.d.ts", "src/**/*.ts", "pages/**/*.tsx"],
"exclude": ["node_modules", "dist"]
"extends": "../../tsconfig.json",
"include": ["./src"]
}
+24 -5
View File
@@ -17,17 +17,36 @@
"experimentalDecorators": true,
"baseUrl": ".",
"paths": {
"@affine/component": ["packages/component/src/index"],
"@affine/datacenter": ["packages/datacenter/src"],
"@affine/i18n": ["packages/i18n/src"],
"@affine/logger": ["packages/logger/src"]
"@affine/component": ["./packages/component/src/index"],
"@affine/datacenter": ["./packages/datacenter/src"],
"@affine/i18n": ["./packages/i18n/src"],
"@affine/logger": ["./packages/logger/src"],
"@toeverything/pathfinder-logger": ["./packages/logger"]
}
},
"references": [
{
"path": "./tests"
},
{
"path": "./apps/web"
},
{
"path": "./apps/desktop"
},
{
"path": "./packages/data-center"
},
{
"path": "./packages/component"
},
{
"path": "./packages/i18n"
},
{
"path": "./packages/logger"
}
],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"files": [],
"exclude": ["node_modules"]
}