mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-25 00:16:29 +02:00
- Add exclusion for .test.ts and .spec.ts files in core tsconfig - Allows tests to exist in source without blocking compilation
17 lines
No EOL
329 B
JSON
17 lines
No EOL
329 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"types": ["node"],
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"src/**/*.test.ts",
|
|
"src/**/*.spec.ts"
|
|
]
|
|
} |