23 lines
537 B
JSON
23 lines
537 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "esnext",
|
|
"lib": ["esnext", "DOM"],
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["src/*"],
|
|
"@io/*": ["src/io/*"],
|
|
"@relay/*": ["src/relay/*"],
|
|
"@store/*": ["src/store/*"],
|
|
"@log/*": ["src/log/*"],
|
|
"@type/*": ["src/type/*"],
|
|
"@util/*": ["src/util/*"]
|
|
}
|
|
}
|
|
}
|