mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-06-28 21:29:18 +08:00
36 lines
736 B
JSON
36 lines
736 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"outDir": "./dist",
|
|
"lib": [
|
|
"esnext",
|
|
"dom",
|
|
"dom.iterable",
|
|
"scripthost"
|
|
],
|
|
"paths": {
|
|
"@src/*": [
|
|
"src/*"
|
|
],
|
|
"@tests/*": [
|
|
"tests/*"
|
|
]
|
|
},
|
|
"noEmitOnError": true
|
|
},
|
|
"includes": ["src/**/*.ts"],
|
|
"exclude": ["node_modules","tests","coverage"],
|
|
}
|