-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
23 lines (23 loc) · 653 Bytes
/
tsconfig.json
File metadata and controls
23 lines (23 loc) · 653 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"skipLibCheck": true,
"verbatimModuleSyntax": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"types": ["vite/client", "node"],
"paths": {
"seslen": ["../src/index.ts"],
"seslen/presets": ["../src/presets/index.ts"],
"seslen/server": ["../src/server.ts"],
"@/*": ["./src/*"]
},
"allowImportingTsExtensions": true
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.d.ts", "vite.config.ts"]
}