35 lines
690 B
JSON
35 lines
690 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"emitDeclarationOnly": true,
|
|
"declarationMap": true,
|
|
|
|
"rootDir": "${configDir}/src",
|
|
"outDir": "${configDir}/dist",
|
|
|
|
"module": "ES2020",
|
|
"moduleResolution": "Bundler",
|
|
"moduleDetection": "force",
|
|
|
|
"types": [],
|
|
|
|
"target": "ES2022",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact",
|
|
|
|
"strict": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"allowImportingTsExtensions": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"paths": {
|
|
"common": ["./packages/common/src/index.ts"],
|
|
},
|
|
},
|
|
"include": ["${configDir}/src"],
|
|
}
|