mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-14 21:31:50 +00:00
24 lines
572 B
JSON
24 lines
572 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "bundler",
|
|
"module": "esnext",
|
|
"target": "es2018",
|
|
"sourceMap": true,
|
|
"noImplicitAny": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"strict": false,
|
|
"lib": ["esnext", "dom"],
|
|
"baseUrl": ".",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"allowJs": true
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.vue", "./ts-vue-shim.d.ts"],
|
|
"references": [
|
|
{
|
|
"path": "../shared/tsconfig.json"
|
|
}
|
|
]
|
|
}
|