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