12 lines
235 B
JSON
12 lines
235 B
JSON
{
|
|
"extends": "./../../tsconfig.json",
|
|
"ts-node": { "files": true },
|
|
"compilerOptions": {
|
|
"outDir": "build",
|
|
"rootDir": ".",
|
|
// Generate d.ts files
|
|
"declaration": true
|
|
},
|
|
"include": ["src/**/*", "test/**/*"]
|
|
}
|