eslint-config/tsconfig.json

16 lines
251 B
JSON
Raw Permalink Normal View History

2022-09-06 10:04:27 +08:00
{
"compilerOptions": {
2022-11-01 03:34:15 +08:00
"baseUrl": ".",
"target": "es2020",
"module": "es2020",
2023-08-07 21:41:19 +08:00
"moduleResolution": "Bundler",
"esModuleInterop": true
2022-09-06 10:04:27 +08:00
},
"include": [
"./packages/**/*.ts"
],
"exclude": [
"./fixtures/**/*.*"
]
}