forked from simwrapper/simwrapper
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 783 Bytes
/
tsconfig.json
File metadata and controls
24 lines (24 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"isolatedModules": true,
"jsx": "react",
"lib": ["esnext", "dom", "dom.iterable", "scripthost", "webworker"],
"module": "esnext",
"moduleResolution": "node",
"paths": { "@/*": ["src/*"], "~/*": ["node_modules/*"] },
"resolveJsonModule": true,
"sourceMap": true,
"skipLibCheck": true,
"strict": true,
"target": "esnext",
"types": ["vite/client", "@types/jest", "vitest/globals"]
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "test/**/*.ts", "test/**/*.tsx"],
"exclude": ["node_modules"]
}