frequi_origin/tsconfig.json

38 lines
674 B
JSON
Raw Normal View History

2020-06-04 18:20:48 +00:00
{
2020-11-10 19:52:39 +00:00
"compilerOptions": {
"target": "es2020",
"module": "es2020",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
2020-11-10 19:52:39 +00:00
"moduleResolution": "node",
"experimentalDecorators": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
2020-11-10 19:52:39 +00:00
"noImplicitAny": false,
"allowJs": true,
"baseUrl": "src",
"types": [
"webpack-env",
2021-12-17 18:40:15 +00:00
"jest",
"cypress"
2020-11-10 19:52:39 +00:00
],
"paths": {
"@/*": [
"./*"
]
}
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
2020-11-10 19:52:39 +00:00
]
2020-06-04 18:20:48 +00:00
}