-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
39 lines (39 loc) · 1.23 KB
/
tsconfig.base.json
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2020",
"module": "esnext",
"lib": ["esnext", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@starfleet/esbuild-plugin-auto-external": [
"libs/esbuild-plugin/auto-external/src/index.ts"
],
"@starfleet/esbuild-plugin-native-node": [
"libs/esbuild-plugin/native-node/src/index.ts"
],
"@starfleet/esbuild-plugin-source-map": [
"libs/esbuild-plugin/source-map/src/index.ts"
],
"@starfleet/esbuild-plugin-swc": ["libs/esbuild-plugin/swc/src/index.ts"],
"@starfleet/esbuild-plugin-transform": [
"libs/esbuild-plugin/transform/src/index.ts"
],
"@starfleet/load-module": ["libs/load-module/src/index.ts"],
"@starfleet/nx-node": ["libs/nx-node/src/index.ts"],
"@starfleet/nx-vite": ["libs/nx-vite/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}