24 lines
539 B
JSON
24 lines
539 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"ignoreDeprecations": "6.0",
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact",
|
|
"types": ["node"],
|
|
"paths": {
|
|
"~web/*": ["src/web/*"],
|
|
"~core/*": ["src/core/*"]
|
|
}
|
|
},
|
|
"include": ["src", "global.d.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|