mirror of
https://github.com/idrawjs/idraw
synced 2026-05-23 01:28:31 +00:00
33 lines
No EOL
847 B
JSON
33 lines
No EOL
847 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react",
|
|
"declaration": true,
|
|
"sourceMap": false,
|
|
"target": "es2020",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"allowJs": false,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"removeComments": true,
|
|
"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"],
|
|
"@idraw/core": ["./packages/core/src/index.ts"],
|
|
"idraw": ["./packages/idraw/src/index.ts"]
|
|
}
|
|
},
|
|
"include": [
|
|
"packages/*/src",
|
|
"packages/*/__tests__"
|
|
],
|
|
"exclude": [
|
|
"packages/*/dist",
|
|
"packages/*/node_modules"
|
|
]
|
|
} |