platform-codebase/tsconfig.json

18 lines
262 B
JSON
Raw Permalink Normal View History

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"outDir": "./dist",
"rootDir": "."
},
"include": [
"features/**/*"
],
"exclude": [
"node_modules",
"dist",
"**/*.spec.ts",
"**/*.test.ts"
]
}