-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
28 lines (28 loc) · 896 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
{
"compilerOptions": {
"outDir": "dist",
"target": "ESNext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
"module": "ESNext" /* Specify what module code is generated. */,
"rootDir": "." /* Specify the root folder within your source files. */,
"baseUrl": "src",
"jsx": "react-jsx" /* Specify what JSX code is generated. */,
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"moduleResolution": "Node",
"resolveJsonModule": true,
"paths": {
"@runtime": [
"./runtime/index.ts"
],
"shared/*": [
"shared/*"
]
},
"types": [
"vitest/globals"
]
},
"include": [
"e2e/**/*.ts",
"src/**/*"
],
}