mirror of
https://github.com/sgranade/manuscriptum.git
synced 2026-07-22 06:43:11 +00:00
26 lines
No EOL
608 B
JSON
26 lines
No EOL
608 B
JSON
{
|
|
"compilerOptions": {
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "NodeNext",
|
|
"target": "es2020",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
// "allowSyntheticDefaultImports": true, // Was needed for jszip as of 3.10.1
|
|
"lib": [
|
|
"DOM",
|
|
"es2020",
|
|
],
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"src/test/*"
|
|
]
|
|
} |