mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-29 00:20:04 +01:00
20 lines
374 B
JSON
20 lines
374 B
JSON
{
|
|
"extends": "../../tsconfig",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"jsx": "react-jsx",
|
|
"outDir": "./dist/",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["*"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"swc": true,
|
|
"require": ["tsconfig-paths/register"]
|
|
},
|
|
"include": ["src/"]
|
|
}
|