Skip to content

Commit f1d889b

Browse files
committed
build: define the TypeScript configuration files
This commit introduces to the root of the workspace, the `tsconfig.json` and the `tsconfig.test.json` files, extending the pre-configured compiler from the `@louffee/tsconfig.json` internal package.
1 parent 47afc8b commit f1d889b

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

tsconfig.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": ["./tsconfig.test.json"],
3+
"compilerOptions": {
4+
"typeRoots": ["./node_modules/@types", "./_env/@types"]
5+
}
6+
}

tsconfig.test.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "@louffee/tsconfig/tsconfig.test.json"
3+
}

0 commit comments

Comments
 (0)