-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
45 lines (45 loc) · 999 Bytes
/
tsconfig.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
40
41
42
43
44
45
{
"extends": "astro/tsconfigs/base",
"compilerOptions": {
"allowImportingTsExtensions": true,
"skipLibCheck": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"resolveJsonModule": true,
"paths": {
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"],},
"lib": [
"ES2021", "dom", "ESNext"
],
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
],
"types": [
"astro/client"
],
"typeRoots": ["./src/types/global.d.ts", "./node_modules/@types"],
"jsx": "react",
},
"noPropertyAccessFromIndexSignature": false,
"include": [
"./index.ts",
"./src/*",
"/src/*",
"/src/**/*",
"src/**/*.d.ts",
"src/**/*.ts",
"src/**/*.astro"
],
"ts-node": {
"esm": true,
"files": true,
"compiler": "typescript",
"experimentalResolver": true,
"experimentalSpecifierResolution": "node"
}
}