omnivore/packages/import-handler/tsconfig.json

13 lines
255 B
JSON
Raw Normal View History

2022-02-11 17:24:33 +00:00
{
"extends": "./../../tsconfig.json",
2023-05-25 08:14:40 +00:00
"ts-node": { "files": true },
2022-02-11 17:24:33 +00:00
"compilerOptions": {
"outDir": "build",
"rootDir": ".",
"lib": ["dom"],
// Generate d.ts files
"declaration": true
2022-02-11 17:24:33 +00:00
},
2023-05-25 08:14:40 +00:00
"include": ["src/**/*", "test/**/*"]
2022-02-11 17:24:33 +00:00
}