platform-codebase/features/analytics/shared/tsconfig.json

23 lines
362 B
JSON
Executable file

{
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"module": "ESNext",
"declaration": true,
"outDir": "./dist",
"rootDir": "./src",
"composite": true,
"baseUrl": "./",
"paths": {
"@/*": [
"src/*"
]
}
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist"
]
}