mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 05:41:51 +00:00
21 lines
432 B
JSON
21 lines
432 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"noImplicitAny": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"target": "esnext",
|
|
"lib": [
|
|
"esnext"
|
|
],
|
|
"baseUrl": "src",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"outDir": "./dist"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
]
|
|
}
|