mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 10:34:09 +00:00
29 lines
599 B
JSON
29 lines
599 B
JSON
{
|
|
"extends": "@tsconfig/node20/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "es2024",
|
|
"lib": [
|
|
"dom",
|
|
"esnext"
|
|
],
|
|
"module": "es6",
|
|
"moduleResolution": "bundler",
|
|
"isolatedModules": true,
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
"importHelpers": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"types": [
|
|
"node"
|
|
],
|
|
"sourceMap": true
|
|
},
|
|
"includes": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.vue"
|
|
],
|
|
"exclude": [
|
|
"./docs/*"
|
|
]
|
|
}
|