-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
44 lines (44 loc) · 1.25 KB
/
tsconfig.node.json
File metadata and controls
44 lines (44 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"composite": true,
"allowImportingTsExtensions": true,
"emitDeclarationOnly": true,
"outDir": "./rollup/build/types-node",
"rootDir": ".",
"types": ["node", "geojson"]
},
"references": [
{ "path": "./tsconfig.browser.json" }
],
"include": [
"./build/**/*",
"./test/**/*",
"./*.config.*",
"./src/style-spec/test.js",
"./src/style-spec/rollup.config.js",
"./internal/scripts/**/*",
"./plugins/**/rollup.config.ts"
],
"exclude": [
"./node_modules",
"./test/release/**/*",
"./test/integration/render-tests/**/*",
"./test/integration/query-tests/**/*",
"./test/integration/expression-tests/**/*",
"./test/integration/csp-tests/**/*",
"./test/integration/data/**/*",
"./test/integration/glyphs/**/*",
"./test/integration/image/**/*",
"./test/integration/models/**/*",
"./test/integration/sprites/**/*",
"./test/integration/styles/**/*",
"./test/integration/tiles/**/*",
"./test/integration/tilesets/**/*",
"./test/integration/lib/operation-handlers.js",
"./test/build/vite/**/*",
"./test/build/webpack/**/*",
"./test/build/typings/**/*",
"./test/build/style-spec.test.js"
]
}