mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-25 18:25:03 +00:00
17 lines
416 B
JSON
17 lines
416 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "NodeNext",
|
|
"module": "NodeNext",
|
|
"noImplicitAny": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"target": "es2022",
|
|
"lib": ["es2022"],
|
|
"baseUrl": "src",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"outDir": "./dist"
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|