frequi_origin/tsconfig.json
2022-06-08 20:49:19 +02:00

48 lines
955 B
JSON

{
"compilerOptions": {
"target": "es2020",
"module": "es2020",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noImplicitAny": false,
"allowJs": true,
"baseUrl": "src",
"types": [
// "webpack-env",
// "jest",
"cypress",
"vite/client",
],
"paths": {
"@/*": [
"./*"
]
}
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"cypress/support/*.ts",
],
"exclude": [
"node_modules",
// "tests"
],
"vueCompilerOptions": {
"experimentalImplicitWrapComponentOptionsWithDefineComponent": false,
"experimentalCompatMode": 2,
"experimentalTemplateCompilerOptions": {
"compatConfig": {
"MODE": 2
} // optional
}
}
}