diff --git a/tsconfig.prod.json b/tsconfig.prod.json new file mode 100644 index 0000000..aa490d3 --- /dev/null +++ b/tsconfig.prod.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "rootDir": "./", + "outDir": "build/" + }, + "exclude": [ + "build/", + "node_modules", + "test/**/*.ts" + ] +} \ No newline at end of file diff --git a/tsconfig.test.json b/tsconfig.test.json new file mode 100644 index 0000000..73716bc --- /dev/null +++ b/tsconfig.test.json @@ -0,0 +1,7 @@ +{ + "extends": "./tsconfig.json", + "exclude": [ + "build/", + "node_modules", + ] +} \ No newline at end of file