Files
esengine/packages/ui/tsconfig.json

32 lines
921 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "bundler",
"allowImportingTsExtensions": false,
"lib": ["ES2020", "DOM"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"composite": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"jsx": "react-jsx",
"resolveJsonModule": true
},
"include": ["src/**/*", "plugin.json"],
"exclude": ["node_modules", "dist"],
"references": [
{ "path": "../core" },
{ "path": "../components" },
{ "path": "../editor-core" }
]
}