1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"target": "es2020",
"module": "es2020",
"moduleResolution": "bundler",
"experimentalDecorators": true,
"useDefineForClassFields": false,
"noImplicitOverride": true,
"types": [],
"lib": ["es2020", "dom"],
"incremental": true,
"skipDefaultLibCheck": true,
"allowSyntheticDefaultImports": true,
"allowImportingTsExtensions": true,
"allowJs": true,
"jsx": "preserve",
"jsxImportSource": "preact",
"paths": {
"$/*": ["./src/*"]
}
}
}
|