19 lines
411 B
JSON
19 lines
411 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "bundler",
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "ripple",
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"plugins": [{ "name": "@ripple-ts/typescript-plugin" }],
|
|
"paths": {
|
|
"@*": ["./src/*"]
|
|
}
|
|
}
|
|
}
|