mirror of
https://github.com/dnote/dnote
synced 2026-03-14 22:45:50 +01:00
* Allow to add and edit notes * Implement search * Implement settings * Implement checkout page * Implement paywall * Fix inconsistent margin * Render mobile menu * Allow to logout * emails * Implement user migration * Always build standalone * Embed digest in email * Move browser extension * Fix test * Use system font * Add favicon and app icons * Make tabbar smaller * Initialize focus on editor * Fix various UI audit issues * Simplify asset serving * Register sw * Upgrade deps
29 lines
629 B
JSON
29 lines
629 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./public/",
|
|
"sourceMap": true,
|
|
"noImplicitAny": false,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es6",
|
|
"jsx": "react",
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"jslib/*": [
|
|
"../jslib/src/*"
|
|
],
|
|
"web/*": [
|
|
"./src/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"compiled",
|
|
"jslib/node_modules",
|
|
"jslib/dist",
|
|
"browser"
|
|
]
|
|
}
|