mirror of
https://github.com/VisActor/VTable
synced 2024-11-22 10:03:28 +00:00
35 lines
762 B
JSON
35 lines
762 B
JSON
{
|
|
"extends": "@internal/ts-config/tsconfig.base.json",
|
|
"include": ["src"],
|
|
"compilerOptions": {
|
|
"types": ["jest", "offscreencanvas", "node"],
|
|
"lib": ["DOM", "ESNext"],
|
|
"baseUrl": "./",
|
|
"rootDir": "./src",
|
|
"outDir": "./es",
|
|
"composite": true,
|
|
"plugins": [
|
|
{ "transform": "typescript-transform-paths" },
|
|
{
|
|
"transform": "typescript-transform-paths",
|
|
"afterDeclarations": true
|
|
}
|
|
],
|
|
"strict": false,
|
|
"paths": {
|
|
"@src/*": ["./src/*"],
|
|
"@vutils-extension": ["./src/vutil-extension-temp"]
|
|
}
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../vtable-editors"
|
|
}
|
|
],
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"compilerOptions": {
|
|
"module": "commonjs"
|
|
}
|
|
}
|
|
} |