clean typescript config

This commit is contained in:
Amaury
2021-06-29 18:01:45 +02:00
parent 17c84dfca6
commit e5a0cc88c4
5 changed files with 85 additions and 36 deletions

11
tsconfig.json Normal file
View File

@ -0,0 +1,11 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"declaration": true, /* Generates corresponding '.d.ts' file. */
"declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
"outDir": "./build/", /* Redirect output structure to the directory. */
"rootDir": "./src/", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
},
"files": ["./src/index.ts", "./src/manage-listener.ts", "./src/sqlite-tools.ts"],
"exclude": ["./tests/**/*"]
}