mirror of
https://github.com/visgl/luma.gl.git
synced 2025-12-08 17:36:19 +00:00
18 lines
405 B
JSON
18 lines
405 B
JSON
// This is a base TS config for the individual packages, mainly for building .d.ts files
|
|
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"build": true,
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"noEmit": false,
|
|
"emitDeclarationOnly": true,
|
|
// Uncomment to debug
|
|
// "listEmittedFiles": true
|
|
},
|
|
"include": [
|
|
"modules/*/src"
|
|
]
|
|
}
|