chore: standardize tsconfig (#9568)

This commit is contained in:
forehalo
2025-01-08 04:07:56 +00:00
parent 39f4b17315
commit c0ed74dfed
151 changed files with 1041 additions and 1566 deletions
+8 -23
View File
@@ -1,33 +1,18 @@
{
"extends": "../../../tsconfig.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"composite": true,
"target": "ES2022",
"module": "ESNext",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"moduleResolution": "Bundler",
"allowSyntheticDefaultImports": true,
"isolatedModules": false,
"resolveJsonModule": true,
"types": ["node"],
"outDir": "dist",
"noEmit": false,
"verbatimModuleSyntax": false,
"rootDir": "./src"
"rootDir": "./src",
"outDir": "./dist",
"tsBuildInfoFile": "./dist/tsconfig.tsbuildinfo"
},
"include": ["./src"],
"exclude": ["dist", "lib", "tests"],
"references": [
{
"path": "./tsconfig.node.json"
},
{
"path": "../native/tsconfig.json"
}
],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
}
{ "path": "../../../tests/kit" },
{ "path": "../../../tools/cli" },
{ "path": "../native" }
]
}