mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 07:27:09 +08:00
37 lines
797 B
JSON
37 lines
797 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"importHelpers": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"lib": [
|
|
"esnext",
|
|
"dom",
|
|
"dom.iterable",
|
|
"scripthost"
|
|
],
|
|
"paths": {
|
|
// 内部模块都指向 src/index.ts, 会有更好的代码跳转体验.
|
|
"@tmagic/*": ["packages/*/src"],
|
|
"@editor/*": ["packages/editor/src/*"],
|
|
},
|
|
"types": [
|
|
"node",
|
|
"vite/client",
|
|
],
|
|
},
|
|
"exclude": [
|
|
"**/dist/**/*"
|
|
],
|
|
}
|