2024-12-04 23:42:16 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
|
|
|
"target": "ESNext",
|
2025-01-04 17:36:01 +08:00
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "bundler",
|
2024-12-04 23:42:16 +08:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"paths": {
|
|
|
|
"~platform/*": ["./src/platform/*"],
|
|
|
|
"~material/*": ["./src/material/*"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|