18 lines
388 B
JSON
18 lines
388 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"strict": true,
|
||
|
"target": "ESNext",
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"esModuleInterop": true,
|
||
|
"noEmit": true,
|
||
|
"isolatedModules": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"paths": {
|
||
|
"~platform/*": ["./src/platform/*"],
|
||
|
"~material/*": ["./src/material/*"]
|
||
|
}
|
||
|
}
|
||
|
}
|