VTable/packages/vtable/tsconfig.json
2023-06-05 18:48:40 +08:00

24 lines
541 B
JSON

{
"extends": "@internal/ts-config/tsconfig.base.json",
"include": ["src"],
"compilerOptions": {
"types": ["jest", "offscreencanvas", "node"],
"lib": ["DOM", "ESNext"],
"baseUrl": "./",
"rootDir": "./src",
"plugins": [
{ "transform": "typescript-transform-paths" },
{
"transform": "typescript-transform-paths",
"afterDeclarations": true
}
],
"strict": false,
},
"ts-node": {
"transpileOnly": true,
"compilerOptions": {
"module": "commonjs"
}
},
}