Skip to content

Commit 855c0e3

Browse files
build: add missing tsconfig.json
1 parent a960ee3 commit 855c0e3

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"$schema": "https://json.schemastore.org/tsconfig",
3+
"extends": "./tsconfig.json",
4+
"compilerOptions": {
5+
"module": "esnext",
6+
"outDir": "build"
7+
},
8+
"include": ["src"],
9+
"exclude": ["**/*.test.ts"],
10+
"tsc-alias": {
11+
"resolveFullPaths": true
12+
}
13+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"$schema": "https://json.schemastore.org/tsconfig",
3+
"extends": "@voiceflow/tsconfig",
4+
"compilerOptions": {
5+
"baseUrl": ".",
6+
"paths": {
7+
"@/*": ["./src/*"]
8+
},
9+
"isolatedModules": false,
10+
"experimentalDecorators": true,
11+
"emitDecoratorMetadata": true
12+
}
13+
}

0 commit comments

Comments
 (0)