Files
notesnook/packages/editor/tsconfig.tests.json

20 lines
374 B
JSON
Raw Normal View History

2023-02-27 10:57:27 +05:00
{
"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"]
},
2023-02-28 12:44:11 +05:00
"include": ["src/"]
2023-02-27 10:57:27 +05:00
}