27 lines
552 B
JSON
27 lines
552 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ES2020",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "dist",
|
|
"rootDir": "assets/viewer",
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"declaration": false,
|
|
"removeComments": false,
|
|
"noEmitOnError": true,
|
|
"allowJs": false,
|
|
"checkJs": false
|
|
},
|
|
"include": [
|
|
"assets/viewer/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"**/*.min.js",
|
|
"pdfjs/**/*",
|
|
"node_modules"
|
|
]
|
|
} |