mirror of
https://github.com/keyboardio/Chrysalis.git
synced 2026-02-28 19:07:17 +01:00
21 lines
412 B
JSON
21 lines
412 B
JSON
{
|
|
"compilerOptions": {
|
|
"checkJs": false,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node",
|
|
"target": "es2020",
|
|
"module": "es2015",
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"@api/*": ["api/*"],
|
|
"@renderer/*": ["renderer/*"],
|
|
"@main/*": ["main/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"typeAcquisition": {
|
|
"enable": true,
|
|
"include": ["react", "react-dom"]
|
|
}
|
|
}
|