rt-graphic-component/tsconfig.json

18 lines
370 B
JSON
Raw Permalink Normal View History

2023-12-19 14:20:48 +08:00
{
"compilerOptions": {
"baseUrl": ".",
2024-01-02 16:40:37 +08:00
"esModuleInterop": true,
2023-12-19 14:20:48 +08:00
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "Node",
"strict": true,
"isolatedModules": true,
2024-01-04 15:14:25 +08:00
"lib": ["ESNext", "DOM"],
"paths": {
"common/*": ["src/common/*"]
}
2023-12-19 14:20:48 +08:00
},
2023-12-19 16:30:41 +08:00
"include": ["src/**/*.ts"],
2024-01-02 16:40:37 +08:00
"exclude": ["node_modules", "components"]
2023-12-19 14:20:48 +08:00
}