mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 09:50:29 -05:00
38 lines
998 B
JSON
38 lines
998 B
JSON
{
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"lib": ["ES2023.Array", "ES2020", "DOM", "DOM.Iterable", "ES2021.String", "ES2022.Array"],
|
|
"skipLibCheck": true,
|
|
"incremental": true,
|
|
"types": ["vitest/globals"],
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "vue",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"override/*": ["src/override/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
".storybook/preview.*",
|
|
"src/**/*.ts", "src/**/*.tsx", "src/**/*.vue",
|
|
"tests/**/*.ts", "tests/**/*.tsx"
|
|
]
|
|
}
|