tangled
alpha
login
or
join now
besaid.zone
/
leaflet-loader-astro
9
fork
atom
leaflet.pub astro loader
9
fork
atom
overview
issues
pulls
pipelines
setup typescript
nulfrost
7 months ago
24464802
e8621890
+54
-1
4 changed files
expand all
collapse all
unified
split
.gitignore
package.json
pnpm-lock.yaml
tsconfig.json
+1
.gitignore
···
1
1
+
node_modules
+7
-1
package.json
···
12
12
"type": "git",
13
13
"url": "git+https://github.com/nulfrost/leaflet-loader-astro.git"
14
14
},
15
15
+
"scripts": {
16
16
+
"build": "tsc"
17
17
+
},
15
18
"license": "MIT",
16
19
"files": ["dist"],
17
20
"type": "module",
18
18
-
"main": "dist/index.js"
21
21
+
"main": "dist/index.js",
22
22
+
"devDependencies": {
23
23
+
"typescript": "^5.9.2"
24
24
+
}
19
25
}
+24
pnpm-lock.yaml
···
1
1
+
lockfileVersion: '9.0'
2
2
+
3
3
+
settings:
4
4
+
autoInstallPeers: true
5
5
+
excludeLinksFromLockfile: false
6
6
+
7
7
+
importers:
8
8
+
9
9
+
.:
10
10
+
devDependencies:
11
11
+
typescript:
12
12
+
specifier: ^5.9.2
13
13
+
version: 5.9.2
14
14
+
15
15
+
packages:
16
16
+
17
17
+
typescript@5.9.2:
18
18
+
resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==}
19
19
+
engines: {node: '>=14.17'}
20
20
+
hasBin: true
21
21
+
22
22
+
snapshots:
23
23
+
24
24
+
typescript@5.9.2: {}
+22
tsconfig.json
···
1
1
+
{
2
2
+
"compilerOptions": {
3
3
+
/* Base Options: */
4
4
+
"esModuleInterop": true,
5
5
+
"skipLibCheck": true,
6
6
+
"lib": ["es2022"],
7
7
+
"target": "es2022",
8
8
+
"allowJs": true,
9
9
+
"resolveJsonModule": true,
10
10
+
"moduleDetection": "force",
11
11
+
"isolatedModules": true,
12
12
+
"verbatimModuleSyntax": true,
13
13
+
"strict": true,
14
14
+
"noUncheckedIndexedAccess": true,
15
15
+
"noImplicitOverride": true,
16
16
+
"module": "NodeNext",
17
17
+
"outDir": "dist",
18
18
+
"rootDir": "src",
19
19
+
"sourceMap": true,
20
20
+
"declaration": true
21
21
+
}
22
22
+
}