feat: init

This commit is contained in:
Morten Olsen
2022-12-06 09:12:53 +01:00
commit 3f5e941446
115 changed files with 13148 additions and 0 deletions

45
tsconfig.json Normal file
View File

@@ -0,0 +1,45 @@
{
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"sourceMap": true,
"outDir": "dist",
"declaration": true,
"declarationMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
},
"include": [],
"references": [
{
"path": "packages/markdown-loader"
},
{
"path": "packages/goodwrites"
},
{
"path": "packages/goodwrites-latex"
},
{
"path": "packages/goodwrites-webpack-loader"
},
{
"path": "packages/goodwrites-viewer"
},
{
"path": "packages/goodwrites-cli"
},
{
"path": "articles"
},
{
"path": "profile"
}
]
}