2023-02-12 03:39:24 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2023-05-06 00:28:15 +00:00
|
|
|
"jsx": "react",
|
2023-02-12 03:39:24 +00:00
|
|
|
"declaration": true,
|
|
|
|
|
"sourceMap": false,
|
2025-05-10 07:20:55 +00:00
|
|
|
"target": "es2020",
|
|
|
|
|
"module": "esnext",
|
2023-02-12 03:39:24 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"allowJs": false,
|
|
|
|
|
"strict": true,
|
2023-04-15 06:37:15 +00:00
|
|
|
"strictNullChecks": true,
|
2023-02-12 03:39:24 +00:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"removeComments": true,
|
2023-04-15 06:37:15 +00:00
|
|
|
"lib": ["ES2016", "DOM"],
|
|
|
|
|
"paths": {
|
|
|
|
|
"@idraw/types": ["./packages/types/src/index.ts"],
|
|
|
|
|
"@idraw/util": ["./packages/util/src/index.ts"],
|
|
|
|
|
"@idraw/renderer": ["./packages/renderer/src/index.ts"],
|
2025-05-10 07:20:55 +00:00
|
|
|
"@idraw/core": ["./packages/core/src/index.ts"],
|
|
|
|
|
"idraw": ["./packages/idraw/src/index.ts"]
|
2023-04-15 06:37:15 +00:00
|
|
|
}
|
2023-02-12 03:39:24 +00:00
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"packages/*/src",
|
2025-05-10 07:20:55 +00:00
|
|
|
"packages/*/__tests__"
|
2023-02-12 03:39:24 +00:00
|
|
|
],
|
|
|
|
|
"exclude": [
|
2023-02-12 06:51:10 +00:00
|
|
|
"packages/*/dist",
|
|
|
|
|
"packages/*/node_modules"
|
2023-02-12 03:39:24 +00:00
|
|
|
]
|
|
|
|
|
}
|