Files
chill-base-app-v3/tsconfig.json
T

20 lines
556 B
JSON
Raw Normal View History

2024-07-03 12:07:27 +02:00
{
2025-03-04 14:43:11 +01:00
"extends": "./vendor/chill-project/chill-bundles/ts-config-base.json",
2024-07-03 12:07:27 +02:00
"compilerOptions": {
"sourceMap": true
},
"includes": [
"./vendor/chill-project/chill-bundles/src/Bundle/**/*.ts",
"./vendor/chill-project/chill-bundles/src/Bundle/**/*.vue",
"./src/**/*.ts",
"./src/**/*.vue"
],
"exclude": [
"./vendor/chill-project/chill-bundles/tests/*",
2025-03-04 14:43:11 +01:00
"./vendor/chill-project/chill-bundles/docs/*",
"./vendor/chill-project/chill-bundles/assets/translator.ts",
"./vendor/chill-project/chill-bundles/var/*.*"
2024-07-03 12:07:27 +02:00
]
}
2025-03-04 14:43:11 +01:00