-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtsconfig.json
36 lines (36 loc) · 916 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
{
"include": ["typings/**/*", "packages/**/*", "src/**/*", "server/**/*", "vite.config.ts", "server.config.ts"],
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@src": ["./src/index"],
"@src/*": ["./src/*"],
},
"lib": ["dom", "esnext"],
"target": "es2017",
"jsx": "react-jsx",
"module": "esnext",
"moduleResolution": "node",
"allowJs": true,
"outDir": "./dist/",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"noImplicitOverride": true,
"noImplicitThis": true,
"allowImportingTsExtensions": true
},
"files": [
"./typings/env.d.ts",
"proxy.config.ts"
],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node",
"files": true
},
}