mirror of
https://github.com/heyman/heynote.git
synced 2025-02-08 06:21:38 +01:00
25 lines
520 B
JSON
25 lines
520 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["ESNext", "DOM"],
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"allowJs": true,
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
}
|
|
},
|
|
"include": ["src"," shared-utils"],
|
|
"references": [
|
|
{ "path": "./tsconfig.node.json" }
|
|
]
|
|
}
|