Files
docmost_custom/packages/editor-ext/tsconfig.json
T

24 lines
602 B
JSON
Raw Normal View History

{
"compilerOptions": {
"module": "CommonJS",
"moduleResolution": "node",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
2024-06-20 14:57:00 +01:00
"target": "ES2022",
2026-01-24 20:41:08 +00:00
"jsx": "react-jsx",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false
}
}