mirror of
https://github.com/visgl/luma.gl.git
synced 2025-12-08 17:36:19 +00:00
36 lines
845 B
JSON
36 lines
845 B
JSON
// This is a base TS config for the individual packages, mainly for building .d.ts files
|
|
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
// Uncomment to debug
|
|
"listEmittedFiles": true
|
|
},
|
|
"references": [
|
|
{"path": "modules/api"},
|
|
{"path": "modules/constants"},
|
|
{"path": "modules/core"},
|
|
{"path": "modules/engine"},
|
|
{"path": "modules/experimental"},
|
|
{"path": "modules/gltools"},
|
|
{"path": "modules/shadertools"},
|
|
{"path": "modules/test-utils"},
|
|
{"path": "modules/webgl"}
|
|
],
|
|
"include": [
|
|
"modules/*/src"
|
|
],
|
|
"exclude": [
|
|
"modules/*/src/libs",
|
|
"modules/tile-converter",
|
|
"modules/textures/src/libs/basis_encoder.js",
|
|
"examples",
|
|
"test",
|
|
"scripts",
|
|
"modules/*/wip",
|
|
"modules/*/bin",
|
|
"modules/*/wip",
|
|
"modules/*/test",
|
|
"modules/*/dist"
|
|
]
|
|
}
|