mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
25 lines
645 B
JSON
25 lines
645 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"allowJs": false,
|
|
"skipLibCheck": false,
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
// 内部模块都指向 src/index.ts, 会有更好的代码跳转体验.
|
|
"@tmagic/*": ["../packages/*"],
|
|
},
|
|
},
|
|
"include": ["./page", "./playground"]
|
|
}
|